import { CollateralCurrency } from './collateralCurrency'; export declare class CreateMultiCollateralOrder { 'orderId'?: string; 'orderType'?: string; 'fixedType'?: string; 'fixedRate'?: string; 'autoRenew'?: boolean; 'autoRepay'?: boolean; 'borrowCurrency': string; 'borrowAmount': string; 'collateralCurrencies'?: Array; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; }