import { AdyenClient } from '../client.mjs'; export type Address = { city?: string; country: string; line1?: string; line2?: string; line3?: string; postalCode?: string; stateOrProvince?: string; }; export type StoreStatus = 'active' | 'inactive' | 'closed'; export type LocalShopperStatement = { script?: string; value?: string; }; export type LocalizedInformation = { localShopperStatement?: LocalShopperStatement[]; }; export type SplitConfiguration = { balanceAccountId?: string; splitConfigurationId?: string; }; export type SubMerchantData = { email?: string; id?: string; mcc?: string; name?: string; }; export type Store = { address?: Address; businessLineIds?: string[]; description?: string; externalReferenceId?: string; id?: string; localizedInformation?: LocalizedInformation; merchantId?: string; phoneNumber?: string; reference?: string; shopperStatement?: string; splitConfiguration?: SplitConfiguration; status?: StoreStatus; subMerchantData?: SubMerchantData; }; export type GetMerchantStoreListOutput = { data?: Store[]; itemsTotal?: number; pagesTotal?: number; }; export type GetMerchantStoreListOptions = { pageNumber?: number; pageSize?: number; reference?: string; }; export declare function getMerchantStoreList(client: AdyenClient, merchantId: string, options?: GetMerchantStoreListOptions): Promise; //# sourceMappingURL=get-merchant-store-list.d.mts.map