interface Props { /** Field identifier (used for ARIA) */ id: string; /** Current selected values */ value: string[]; /** Available options */ options: string[]; /** Whether the field is disabled (read-only) */ disabled?: boolean; /** ARIA description ID */ ariaDescribedBy?: string; /** Callback when value changes */ onChange: (value: string[]) => void; } declare const FormCheckboxGroup: import("svelte").Component; type FormCheckboxGroup = ReturnType; export default FormCheckboxGroup;