import { Path } from "@meursyphus/flitter"; export default function Line({ thickness, color, minValue, maxValue, values, spline, }: { thickness?: number; color: string; values: number[]; minValue: number; maxValue: number; spline?: boolean; }): any; export declare function drawLine(path: Path, { width, height, spline, values, maxValue, minValue, }: { width: number; height: number; spline: boolean; values: number[]; minValue: number; maxValue: number; }): void;