import { default as React } from 'react';
export interface LineChartDataPoint {
x: number;
y: number;
}
export interface LineChartSeries {
name: string;
data: LineChartDataPoint[];
color?: string;
}
export interface LineChartProps {
/** Chart series */
series: LineChartSeries[];
/** Show legend */
showLegend?: boolean;
/** Show grid */
showGrid?: boolean;
/** Show points */
showPoints?: boolean;
/** Chart height */
height?: number;
/** X-axis labels */
xLabels?: string[];
/** Additional className */
className?: string;
}
/**
* LineChart Component
*
* Line chart with support for multiple series.
* Displays trends over time or continuous data.
*
* @example
* ```tsx
*
* ```
*/
export declare const LineChart: React.FC;
//# sourceMappingURL=line-chart.d.ts.map