import type { Config } from '../types/index.js'; import type { ContentPage, ContentPageType, QueryContentPage } from './types/index.js'; /** * Method to receive a content page ranked. * * @param contentPageType - Type of content to request page ranked (LISTING | SET | PRODUCT). * @param query - Query object with search terms 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 getContentPage: (contentPageType: ContentPageType, query: QueryContentPage, config?: Config) => Promise; export default getContentPage;