/** * SvCheckBox - a themed checkbox with an indeterminate state and optional * label. Parity: Smart `smart-check-box`. Controlled via `checked` + `onChange`. */ import type { Snippet } from 'svelte'; import { type SvEditorProps } from './editor-contract'; type Props = SvEditorProps & { checked?: boolean; indeterminate?: boolean; onChange?: (checked: boolean) => void; value?: string; children?: Snippet; }; declare const SvCheckBox: import("svelte").Component; type SvCheckBox = ReturnType; export default SvCheckBox;