import { default as React } from 'react'; export interface AreaChartDataPoint { x: number; y: number; } export interface AreaChartSeries { name: string; data: AreaChartDataPoint[]; color?: string; } export interface AreaChartProps { /** Chart series */ series: AreaChartSeries[]; /** Show legend */ showLegend?: boolean; /** Show grid */ showGrid?: boolean; /** Fill opacity */ fillOpacity?: number; /** Chart height */ height?: number; /** X-axis labels */ xLabels?: string[]; /** Additional className */ className?: string; } /** * AreaChart Component * * Area chart with filled regions under lines. * Supports multiple series with layering. * * @example * ```tsx * * ``` */ export declare const AreaChart: React.FC; //# sourceMappingURL=area-chart.d.ts.map