import type { MmmApiCreateParams, MmmApiCreateResponse, MmmApiCheckParams, MmmApiCheckResponse, MmmApiDownloadParams, MmmApiDownloadResponse, MmmApiHistoryParams, MmmApiHistoryResponse } from "../types/media-mix-modeling.ts"; export declare function createMediaMixModeling(opts: { accessToken: string; advertiserId: string; }): { /** Create an MMM data request */ createApi(params: MmmApiCreateParams): Promise; /** Check the status of an MMM data request */ apiCheck(params: MmmApiCheckParams): Promise; /** Obtain the download URL for MMM data */ apiDownload(params: MmmApiDownloadParams): Promise; /** Get the MMM data request history */ apiHistory(params: MmmApiHistoryParams): Promise; }; //# sourceMappingURL=media-mix-modeling.d.ts.map