import React from 'react'; export interface SeriesDef { type: 'line' | 'area' | 'bar'; dataKey: string; color?: string; } interface ChartsProps { dataset: any[]; xAxis: { dataKey: string; }[]; series: SeriesDef[]; children: React.ReactNode; className?: string; style?: React.CSSProperties; } export declare const Charts: React.FC; export {};