import { AdyenClient } from '../client.mjs'; import type { Address, Store, LocalizedInformation, SplitConfiguration, SubMerchantData } from './get-merchant-store-list.mjs'; export type CreateMerchantStoreInput = { address?: Address; businessLineIds?: string[]; description?: string; externalReferenceId?: string; localizedInformation?: LocalizedInformation; phoneNumber?: string; reference?: string; shopperStatement?: string; splitConfiguration?: SplitConfiguration; subMerchantData?: SubMerchantData; }; export type CreateMerchantStoreOutput = Store; export declare function createMerchantStore(client: AdyenClient, merchantId: string, input: CreateMerchantStoreInput): Promise; //# sourceMappingURL=create-merchant-store.d.mts.map