import { AdyenClient } from '../client.mjs'; export type USBankAccountType = 'checking' | 'savings'; export type USLocalAccountIdentificationInput = { accountNumber: string; accountType?: USBankAccountType; routingNumber: string; type: 'usLocal'; }; export type BankAccountInput = { accountIdentification: USLocalAccountIdentificationInput; bankName: string; countryCode: string; }; export type CreateTransferInstrumentInput = { bankAccount: BankAccountInput; legalEntityId: string; type: 'bankAccount'; }; export type CreateTransferInstrumentOutput = { replaceme?: unknown; }; export declare function createTransferInstrument(client: AdyenClient, input: CreateTransferInstrumentInput): Promise; //# sourceMappingURL=create-transfer-instrument.d.mts.map