import type { ChartTheme } from '../themes/types.js'; export interface LineChartProps { data: Record[]; x: string; y: string | string[]; width: number; height: number; theme?: ChartTheme; color?: string; showArea?: boolean; margin?: { top: number; right: number; bottom: number; left: number; }; } export declare function LineChart({ data, x, y, width, height, theme, color, showArea, margin, }: LineChartProps): import("react/jsx-runtime").JSX.Element | null; //# sourceMappingURL=LineChart.d.ts.map