export declare class Transfer { id: string; sourceAmount: string; sourceCurrency: string; destAmount: string; destCurrency: string; status: string; message: string; customId: any; exchangeRate: number; createdAt: number; fees: object; totalFees: number; completedAt: number; cancelledAt: any; failureReason: any; expiresAt: number; reversingSubStatus: any; reversalReason: any; pendingSubStatus: any; dest: string; blockchainTx: any; statusHistories: object[]; owner: string; source: string; }