import type { StoreListParams, StoreListResponse, StoreProductGetParams, StoreProductGetResponse } from "../types/tiktok-store.ts"; export declare function createTiktokStore(opts: { accessToken: string; advertiserId: string; }): { /** Get available stores under an ad account */ listStore(params: StoreListParams): Promise; /** Get products within a TikTok Shop */ getProduct(params: StoreProductGetParams): Promise; }; //# sourceMappingURL=tiktok-store.d.ts.map