import type { DeleteSubscription } from './types/index.js'; /** * Method responsible for sending a delete all subscriptions request to MKT API * containing the subscription id and email hash of the user to be unsubscribed. * * @param query - Query object. * @param config - Custom configurations to send to the client instance (axios). * * @returns Promise object. */ declare const deleteSubscription: DeleteSubscription; export default deleteSubscription;