import type { GetRecommendedProducts } from './types/index.js'; /** * Method responsible for retrieving data from recommendations endpoint on MKT API. * * @param query - Query object with product recommendation parameters to apply. * @param config - Custom configurations to send to the client instance (axios). * * @returns Promise object. */ declare const getRecommendedProducts: GetRecommendedProducts; export default getRecommendedProducts;