import { Widget, type BuildContext } from "@meursyphus/flitter"; import CartesianChartContextWidget from "../../../common/CartesianChart/CartesianChartContextWidget"; import type { Custom } from "../types"; export type LineProps = { color: string; values: number[]; minValue: number; maxValue: number; }; export type LineConfig = { thickness?: number; spline?: boolean; }; export declare class Line extends CartesianChartContextWidget { private props; constructor(props: LineProps); build(context: BuildContext): Widget; } declare const _default: (props: LineProps) => Line; export default _default;