import type { CatalogInsightFilterGetParams, CatalogInsightFilterGetResponse, CatalogInsightProductGetParams, CatalogInsightProductGetResponse, CatalogInsightCategoryGetParams, CatalogInsightCategoryGetResponse } from "../types/catalog-insights.ts"; export declare function createCatalogInsights(opts: { accessToken: string; advertiserId: string; }): { /** Get filters for catalog product insights */ getFilter(params: CatalogInsightFilterGetParams): Promise; /** Get trending catalog products */ getProduct(params: CatalogInsightProductGetParams): Promise; /** Get trending catalog product categories */ getCategory(params: CatalogInsightCategoryGetParams): Promise; }; //# sourceMappingURL=catalog-insights.d.ts.map