export declare enum BatchTransferType { SAME = "same", LOCAL = "local", INTERNATIONAL = "intl" } export interface IBatchItem { type: BatchTransferType; amount: number; currency: string; remittanceCurrency?: string; date?: string; remark?: string; remark2?: string; remark3?: string; fxDeal?: string; payableCountry?: string; sortCode?: string; routeCode?: string; beneficiary: { accountNumber?: string; iban?: string; name?: string; nickname?: string; address?: string; country: string; email?: string; type?: string; bankName?: string; branchName?: string; branchCity?: string; swiftCode: string; intermediaryBankName?: string; intermediaryBankSwiftCode?: string; }; }