import { type ChartSeriesConfig, type ChartSize } from "../chartConfig.js"; export * from "./variants.js"; type AreaChartProps> = { data: T[]; categoryKey: string; series: ChartSeriesConfig[]; /** Optional title rendered above the chart. */ title?: string; /** Size preset — controls chart height. */ size?: ChartSize; stacked?: boolean; showGrid?: boolean; }; export declare function AreaChart>({ data, categoryKey, series, title, size, stacked, showGrid, }: AreaChartProps): import("react").JSX.Element; //# sourceMappingURL=index.d.ts.map