import { RepayRecordCurrency } from './repayRecordCurrency'; import { RepayRecordLeftInterest } from './repayRecordLeftInterest'; import { RepayRecordRepaidCurrency } from './repayRecordRepaidCurrency'; import { RepayRecordTotalInterest } from './repayRecordTotalInterest'; export declare class MultiRepayRecord { 'orderId'?: number; 'recordId'?: number; 'initLtv'?: string; 'beforeLtv'?: string; 'afterLtv'?: string; 'borrowTime'?: number; 'repayTime'?: number; 'borrowCurrencies'?: Array; 'collateralCurrencies'?: Array; 'repaidCurrencies'?: Array; 'totalInterestList'?: Array; 'leftRepayInterestList'?: Array; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; }