import type { BarMode, PlotConfig } from '..'; import type { Orientation, PlotControlsProps } from '../core/types'; import type { Snippet } from 'svelte'; type $$ComponentProps = Omit & { orientation?: Orientation; mode?: BarMode; show_controls?: boolean; controls_open?: boolean; children?: Snippet<[ { orientation: Orientation; mode: BarMode; } & Required ]>; }; declare const BarPlotControls: import("svelte").Component<$$ComponentProps, {}, "display" | "mode" | "orientation" | "show_controls" | "x2_axis" | "y_axis" | "y2_axis" | "controls_open" | "x_axis">; type BarPlotControls = ReturnType; export default BarPlotControls;