import type { ShowcaseIdentityGetParams, ShowcaseIdentityGetResponse, ShowcaseRegionGetParams, ShowcaseRegionGetResponse, ShowcaseProductGetParams, ShowcaseProductGetResponse } from "../types/showcase.ts"; export declare function createShowcase(opts: { accessToken: string; advertiserId: string; }): { /** Get identities with Showcase permission under an ad account */ getIdentity(params: ShowcaseIdentityGetParams): Promise; /** Get the available regions for a Showcase via identity */ getRegion(params: ShowcaseRegionGetParams): Promise; /** Get the available products in a Showcase */ getProduct(params: ShowcaseProductGetParams): Promise; }; //# sourceMappingURL=showcase.d.ts.map