interface CheckboxProps { checked?: boolean; indeterminate?: boolean; disabled?: boolean; label?: string; helperText?: string; id?: string; name?: string; value?: string; size?: 'sm' | 'md' | 'lg'; class?: string; /** Accessible name when no visible label is provided. */ 'aria-label'?: string; onchange?: (checked: boolean) => void; onclick?: (e: MouseEvent) => void; } declare const Checkbox: import("svelte").Component; type Checkbox = ReturnType; export default Checkbox;