import { Widget, BuildContext } from "@meursyphus/flitter"; import CartesianChartContextWidget from "../../../common/CartesianChart/CartesianChartContextWidget"; type PlotProps = { direction: "vertical" | "horizontal"; }; 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;