No API to erase UICR on nrf54l15

I followed the recommendation in https://devzone.nordicsemi.com/f/nordic-q-a/124712/compile-error-trying-to-use-nrfx-nvmc-library-with-nrf54l15/550436 to use CONFIG_NRFX_RRAMC. However, nrfx_rramc.h only provides an API to erase both user code and UICR as mentioned:

/**
* @brief Function for erasing the whole RRAM memory.
*
* @note All user code and UICR will be erased.
*/
void nrfx_rramc_all_erase(void);
Is there an API available to erase just the UICR similar to nrfx_nvmc_uicr_erase() in nrfx_nvmc.h?
Related