import type { DeleteSubscriptionTopicRecipient } from './types/index.js'; /** * Method responsible for sending a request to remove a recipient from a * subscription topic to the MKT API. * * @param subscriptionId - Id of the subscription to be affected. * @param topicId - Id of topic to remove the recipient from. * @param recipientId - The id of the recipient to be removed. * @param config - Custom configurations to send to the client instance (axios). * * @returns Promise object. */ declare const deleteSubscriptionTopicRecipient: DeleteSubscriptionTopicRecipient; export default deleteSubscriptionTopicRecipient;