export declare enum BatchTransferStage { NA = "na", PENDING = "pending", WAITING_VERIFICATION = "waiting_for_verification", WAITING_AUTHORIZATION = "waiting_for_authorization", WAITING_RELEASE = "waiting_for_release", RELEASING = "releasing", DONE = "done", FAILED = "failed" } export interface IBaseBatchTransferDetails { numFailedItems: number; numPendingItems: number; numSucceededItems: number; } export interface ITransferAccount { iban: string; accountNumber: string; } export interface IBatchItemError { msg: string; field: string; type: string; } export interface IBatchTransferItemDetails { status: BatchItemStatus; errors: IBatchItemError[]; name: string; amount: number; currency: string; iban: string; accountNumber: string; reference?: string; } export declare enum BatchItemStatus { NA = "na", FAILED = "failed", PENDING = "pending", SUCCEEDED = "succeeded" }