import { SpotGridCreateParams } from './spotGridCreateParams'; export declare class SpotGridCreateRequest { 'strategyType': SpotGridCreateRequest.StrategyType; 'market': string; 'createParams': SpotGridCreateParams; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; } export declare namespace SpotGridCreateRequest { enum StrategyType { SpotGrid } }