import type { GetProductListing } from './types/index.js'; /** * Method responsible for loading the listing. * * @param slug - Slug to load the products. * @param query - Query parameters to apply to the listing. * @param config - Custom configurations to send to the client instance (axios). * * @returns Promise that will be resolved when the call to the endpoint finishes. */ declare const getProductListing: GetProductListing; export default getProductListing;