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