import type { DiscoveryTrendingListParams, DiscoveryTrendingListResponse, DiscoveryDetailParams, DiscoveryDetailResponse, DiscoveryVideoListParams, DiscoveryVideoListResponse, DiscoveryCmlTrendingListParams, DiscoveryCmlTrendingListResponse, DiscoveryCmlVideoListParams, DiscoveryCmlVideoListResponse, DiscoveryTrendingSearchParams, DiscoveryTrendingSearchResponse, DiscoveryTrendingSearchKeywordParams, DiscoveryTrendingSearchKeywordResponse } from "../types/discovery.ts"; export declare function createDiscovery(opts: { accessToken: string; advertiserId: string; }): { /** Get popular hashtags */ discoveryTrendingList(params: DiscoveryTrendingListParams): Promise; /** Get details of a popular hashtag */ discoveryDetail(params: DiscoveryDetailParams): Promise; /** Get trending videos related to hashtags */ discoveryVideoList(params: DiscoveryVideoListParams): Promise; /** Get popular tracks from the Commercial Music Library */ cmlTrendingList(params: DiscoveryCmlTrendingListParams): Promise; /** Get trending videos related to tracks */ cmlVideoList(params: DiscoveryCmlVideoListParams): Promise; /** Get trending search keywords */ trendingSearch(params: DiscoveryTrendingSearchParams): Promise; /** Get recommended search keywords */ searchKeyword(params: DiscoveryTrendingSearchKeywordParams): Promise; }; //# sourceMappingURL=discovery.d.ts.map