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