import type { SplitTestCreateParams, SplitTestCreateResponse, SplitTestUpdateParams, SplitTestUpdateResponse, SplitTestEndParams, SplitTestEndResponse, SplitTestResultGetParams, SplitTestResultGetResponse, SplitTestPromoteParams, SplitTestPromoteResponse } from "../types/super-split-test.ts"; export declare function createSuperSplitTest(opts: { accessToken: string; advertiserId: string; }): { /** Create a split test */ createSplitTest(params: SplitTestCreateParams): Promise; /** Update the time of a split test */ updateSplitTest(params: SplitTestUpdateParams): Promise; /** End a split test */ splitTestEnd(params: SplitTestEndParams): Promise; /** Get the results of a split test */ getResult(params: SplitTestResultGetParams): Promise; /** Run the winning ad group */ splitTestPromote(params: SplitTestPromoteParams): Promise; }; //# sourceMappingURL=super-split-test.d.ts.map