/** * Toggle row — a labelled switch in its own bordered well (Framer/Linear style): * the label (and an optional hint under it) sits at the inline-start, the switch * at the inline-end. The visible pill is a sibling driven off the hidden * checkbox's `:checked` state, so keyboard focus, Space to toggle, and form * semantics come for free from the native input. * * Styling: `.tog-row` / `.tog` in builder.css. */ export declare function ToggleRow({ label, hint, checked, onChange, id, }: { label: string; hint?: string; checked: boolean; onChange: (checked: boolean) => void; id?: string; }): import("react").JSX.Element;