export declare class CreateTrailOrder { 'contract': string; 'amount': string; 'activationPrice'?: string; 'isGte'?: boolean; 'priceType'?: CreateTrailOrder.PriceType; 'priceOffset'?: string; 'reduceOnly'?: boolean; 'positionRelated'?: boolean; 'text'?: string; 'posMarginMode'?: string; 'positionMode'?: 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 CreateTrailOrder { enum PriceType { NUMBER_1, NUMBER_2, NUMBER_3 } }