import { StrategyType } from './strategyType'; export declare class AIHubPortfolioDetailData { 'strategyId': string; 'strategyType': StrategyType; 'market': string; 'status': string; 'baseInfo': { [key: string]: string; }; 'metrics': { [key: string]: string; }; 'position'?: { [key: string]: string; } | null; 'stopSupported': boolean; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; }