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