import { Widget, EdgeInsets } from "@meursyphus/flitter"; export declare const defaultPlotConfig: { LINE_COLOR: string; LINE_WIDTH: number; }; export default function Plot({ child, BackgroundAdditions, ForegroundAdditions, width, height, backgroundColor, padding, horizontalLine, verticalLine, }: PlotProps): any; type PlotProps = { width?: number; height?: number; backgroundColor?: string; padding?: EdgeInsets; BackgroundAdditions: Widget[]; ForegroundAdditions: Widget[]; child: Widget; verticalLine: PlotLine; horizontalLine: PlotLine; }; type PlotLine = { color?: string; thickness: number; count: number; }; export {};