import type { GetSubscriptionPackages } from './types/index.js'; /** * Method responsible for retrieving all topics configured for the current tenant * from the subscription packages endpoint on MKT API. * * @param query - Query parameters to apply. * @param config - Custom configurations to send to the client instance (axios). * * @returns Promise that will resolve when the call to the endpoint finishes. */ declare const getSubscriptionPackages: GetSubscriptionPackages; export default getSubscriptionPackages;