import type { Application } from '../../../declarations'; export declare class PerformanceServiceExamples { static getChartData(app: Application, traderId: string, userId: string): Promise>; static getPerformanceStats(app: Application, traderId: string, userId: string): Promise>; static getRawData(app: Application, traderId: string, userId: string): Promise>; static useHelperDirectly(traderId: string, userId: string): Promise<{ chartData: { timestamp: number; profit_all_percent: number; trade_count: number; winning_trades: number; losing_trades: number; }[]; recentData: any[]; stats: { avgProfitPercent: number; maxProfitPercent: number; minProfitPercent: number; totalTrades: number; winRate: number; dataPoints: number; }; }>; }