import type { ChartExportFormat } from '../core/utils/chart-export'; import type { Snippet } from 'svelte'; import type { HTMLAttributes } from 'svelte/elements'; type $$ComponentProps = { show_controls?: boolean; controls_open?: boolean; grid_step?: number; show_grid?: boolean; show_ticks?: boolean; on_export?: (format: ChartExportFormat) => void; toggle_props?: HTMLAttributes; pane_props?: HTMLAttributes; children?: Snippet; }; declare const TernaryControls: import("svelte").Component<$$ComponentProps, {}, "show_controls" | "controls_open" | "show_grid" | "grid_step" | "show_ticks">; type TernaryControls = ReturnType; export default TernaryControls;