import type { GetRecentlyViewedProducts } from './types/index.js'; /** * Method responsible for retrieving data from recently viewed products 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 be resolved when the call to the endpoint finishes. */ declare const getRecentlyViewedProducts: GetRecentlyViewedProducts; export default getRecentlyViewedProducts;