export declare class SpotPricePutOrder { 'type'?: SpotPricePutOrder.Type; 'side': SpotPricePutOrder.Side; 'price': string; 'amount': string; 'account': SpotPricePutOrder.Account; 'timeInForce': SpotPricePutOrder.TimeInForce; 'autoBorrow'?: boolean; 'autoRepay'?: boolean; 'text'?: string; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; } export declare namespace SpotPricePutOrder { enum Type { Limit, Market } enum Side { Buy, Sell } enum Account { Normal, Margin, Unified } enum TimeInForce { Gtc, Ioc } }