import { BorrowCurrencyInfo } from './borrowCurrencyInfo'; import { CollateralCurrencyInfo } from './collateralCurrencyInfo'; export declare class MultiCollateralOrder { 'orderId'?: string; 'orderType'?: string; 'fixedType'?: string; 'fixedRate'?: string; 'expireTime'?: number; 'autoRenew'?: boolean; 'autoRepay'?: boolean; 'currentLtv'?: string; 'status'?: string; 'borrowTime'?: number; 'totalLeftRepayUsdt'?: string; 'totalLeftCollateralUsdt'?: string; 'borrowCurrencies'?: Array; 'collateralCurrencies'?: Array; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; }