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