import type { Snippet } from 'svelte'; type Props = { checked: boolean; /** Row density — forwarded to `ToolbarOption`. @default 'md' */ size?: 'sm' | 'md'; disabled?: boolean; children: Snippet; on?: { change?: (value: boolean) => void; }; }; /** * A toggle row for toolbar dropdowns — a thin wrapper over `ToolbarOption` with a trailing switch. The * whole row is the click target; clicking flips `checked` through `on.change`. The switch is a * presentational `Toggle` sized to the option glyph; sizing and styling come from `ToolbarOption`. */ declare const Cmp: import("svelte").Component; type Cmp = ReturnType; export default Cmp;