import { Widget, BuildContext } from "@meursyphus/flitter"; import type { Custom, Dependencies, Data, Scale, Theme } from "../types"; import ChartContextWidget from "../../../common/ChartContextWidget"; 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 ChartContextWidget { protected props: PlotProps; constructor(props: PlotProps); build(context: BuildContext): Widget; } declare const _default: (props: PlotProps) => Plot; export default _default;