import type { AdAcoGetParams, AdAcoGetResponse, AdAcoCreateParams, AdAcoCreateResponse, AdAcoUpdateParams, AdAcoUpdateResponse, AdAcoMaterialStatusUpdateParams, AdAcoMaterialStatusUpdateResponse } from "../types/smart-creative.ts"; export declare function createSmartCreative(opts: { accessToken: string; advertiserId: string; }): { /** Get Smart Creative materials */ getAco(params: AdAcoGetParams): Promise; /** Create Smart Creative ads */ createAco(params: AdAcoCreateParams): Promise; /** Update Smart Creative materials */ updateAco(params: AdAcoUpdateParams): Promise; /** Update the statuses of Smart Creative materials */ updateMaterialStatus(params: AdAcoMaterialStatusUpdateParams): Promise; }; //# sourceMappingURL=smart-creative.d.ts.map