import { AdyenClient } from '../client.mjs'; import type { BankAccountInput } from './create-transfer-instrument.mjs'; import type { GetTransferInstrumentOutput } from './get-transfer-instrument.mjs'; export type UpdateTransferInstrumentInput = { bankAccount?: Partial; legalEntityId?: string; type?: 'bankAccount'; }; export type UpdateTransferInstrumentOutput = GetTransferInstrumentOutput; export declare function updateTransferInstrument(client: AdyenClient, transferInstrumentId: string, input: UpdateTransferInstrumentInput): Promise; //# sourceMappingURL=update-transfer-instrument.d.mts.map