import { type CheckboxOption } from '../CheckboxGroup/CheckboxGroup.svelte'; interface FormCheckboxGroupProps { name?: string; label?: string; options?: CheckboxOption[]; value?: string[]; orientation?: 'vertical' | 'horizontal'; size?: 'sm' | 'md' | 'lg'; helperText?: string; errorMessage?: string; disabled?: boolean; bindData?: boolean; class?: string; onchange?: (value: string[]) => void; } declare const FormCheckboxGroup: import("svelte").Component; type FormCheckboxGroup = ReturnType; export default FormCheckboxGroup;