import { Widget, BuildContext } from "@meursyphus/flitter"; import CartesianChartContextWidget from "../CartesianChartContextWidget"; export type PlotProps = {}; export type PlotConfig = { width?: number; height?: number; verticalLine?: PlotLine; horizontalLine?: PlotLine; backgroundAdditions?: Widget[]; foregroundAdditions?: Widget[]; }; type PlotLine = { color?: string; thickness?: number; count?: number; }; export declare class Plot extends CartesianChartContextWidget { protected props: PlotProps; constructor(props?: PlotProps); build(context: BuildContext): Widget; } declare const _default: (props: PlotProps) => Plot; export default _default;