export interface ChartConfig { chartType: 'bar' | 'pie'; data: number[]; categories: string[]; title: string; }