export interface Props { /** Field name */ name: string; /** Field label */ label?: string; /** Description for voice extraction */ description?: string; /** Current value (bindable) */ checked?: boolean; /** Disabled state */ disabled?: boolean; /** Required field */ required?: boolean; /** Called when value changes */ onchange?: (checked: boolean) => void; } declare const CheckboxInput: import("svelte").Component; type CheckboxInput = ReturnType; export default CheckboxInput; //# sourceMappingURL=CheckboxInput.svelte.d.ts.map