import { TPoint } from "../LineChart/types"; interface Props { color?: string; data: TPoint[]; thickness?: 0 | 1 | 2; } export default function Line({ color, data, thickness, }: Props): import("react/jsx-runtime").JSX.Element | undefined; export {};