interface FormCheckboxProps { id?: string; name?: string; label?: string; helperText?: string; errorMessage?: string; checked?: boolean; disabled?: boolean; size?: 'sm' | 'md' | 'lg'; value?: string; /** Sync with `form.data[name]` when inside `
`. */ bindData?: boolean; class?: string; onchange?: (checked: boolean) => void; } declare const FormCheckbox: import("svelte").Component; type FormCheckbox = ReturnType; export default FormCheckbox;