import { StrategyType } from './strategyType'; export declare class AIHubRecommendation { 'recommendationId': string; 'market': string; 'strategyType': StrategyType; 'strategyName': string; 'backtestApr'?: string; 'maxDrawdown'?: string; 'summary': string; 'strategyParamsPreview'?: { [key: string]: string; }; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; }