export type DashboardChartType = 'burndown' | 'velocity' | 'effortMix' | 'phaseDuration'; export type ChartDataPoint = { label: string; value: number; }; export type DashboardData = { burndown: ChartDataPoint[]; velocity: ChartDataPoint[]; effortMix: ChartDataPoint[]; phaseDuration: ChartDataPoint[]; generatedAt: string; dataAsOf: string; taskCount: number; }; export type DashboardOptions = { outputPath?: string; title?: string; };