import { AdyenClient } from '../client.mjs'; import type { CreateMerchantStoreInput } from './create-merchant-store.mjs'; import type { GetMerchantStoreOutput } from './get-merchant-store.mjs'; export type UpdateMerchantStoreInput = Partial; export type UpdateMerchantStoreOutput = GetMerchantStoreOutput; export declare function updateMerchantStore(client: AdyenClient, merchantId: string, storeId: string, input: UpdateMerchantStoreInput): Promise; //# sourceMappingURL=update-merchant-store.d.mts.map