import { ReactElement } from "react"; import { Scale } from "./lib/types"; import { Data, Ordinal } from "./lib/types"; export declare function LineChart({ xScale, yScale, data, className, options, theme, }: { xScale: Scale; yScale: Scale; data: Data; className?: string; options?: { gradient?: string; showMarkers?: boolean; }; }): ReactElement;