export declare class InfiniteGridCreateParams { 'money': string; 'priceFloor': string; 'profitPerGrid': string; 'gridNum': number; 'priceType': InfiniteGridCreateParams.PriceType; 'triggerPrice'?: string; 'stopProfit'?: string; 'stopLoss'?: string; 'profitSharingRatio'?: string; 'isUseBase'?: boolean; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; } export declare namespace InfiniteGridCreateParams { enum PriceType { NUMBER_0, NUMBER_1 } }