import type { Dispatch } from 'redux'; /** * Method responsible for clearing a specific unsubscribe recipient from topic * request state from the redux store. * * @param recipientId - The id of the recipient (address) whose unsubscribe request state is to be * removed. * * @returns Dispatch clear unsubscribe recipient from topic action. */ declare const clearUnsubscribeRecipientFromTopic: (recipientId: string) => (dispatch: Dispatch) => void; export default clearUnsubscribeRecipientFromTopic;