import { HTMLAttributes } from "react"; interface IProps extends HTMLAttributes { centerXAxisLabels?: boolean; children?: React.ReactNode; domain: [number, number]; points?: { color?: string; x: number; y: number; }[]; range: [number, number]; xAxisLabels?: string[]; xAxisTitle?: string; yAxisLabels?: string[]; yAxisTitle?: string; } export default function LineChart({ centerXAxisLabels, children, domain, points, range, xAxisLabels, xAxisTitle, yAxisLabels, yAxisTitle, ...rest }: IProps): import("react/jsx-runtime").JSX.Element; export {};