import { BaseResource } from './BaseResource.js'; import type { RequestOptions, TagadaList } from '../types/common.js'; import type { Store, StoreListParams, StoreCreateParams } from '../types/stores.js'; export declare class Stores extends BaseResource { /** * List all stores for the authenticated account. */ list(params?: StoreListParams, opts?: RequestOptions): Promise>; /** * Create a new store with currency configuration. */ create(params: StoreCreateParams, opts?: RequestOptions): Promise; /** * Retrieve a store by its ID. */ retrieve(storeId: string, opts?: RequestOptions): Promise; } //# sourceMappingURL=Stores.d.ts.map