import type { AriaBoolean } from '../../../types/index.js'; interface Props { children?: import('svelte').Snippet; class?: string; disabled?: boolean; indeterminate?: boolean; required?: boolean; readonly?: boolean; id?: string; name?: string; value?: string; form?: string; checked?: boolean; 'aria-label'?: string; 'aria-labelledby'?: string; 'aria-describedby'?: string; 'aria-invalid'?: AriaBoolean; onchange?: (event: Event) => void; oninput?: (event: Event) => void; } declare const Checkbox: import("svelte").Component; type Checkbox = ReturnType; export default Checkbox;