export interface ChartSeries { label: string; data: number[]; color?: string; hoverColor?: string; } export interface ChartProps { series: ChartSeries[]; labels?: string[]; type?: 'line' | 'bar'; height?: number; showLegend?: boolean; className?: string; } export declare function Chart({ series, labels, type, height, showLegend, className, }: ChartProps): import("react/jsx-runtime").JSX.Element;