interface Props { children?: import('svelte').Snippet<[{ checked: boolean; }]>; checked?: boolean; class?: string; disabled?: boolean; required?: boolean; invalid?: boolean; errormessage?: string; name?: string; id?: string; value?: string; 'aria-label'?: string; 'aria-labelledby'?: string; 'aria-describedby'?: string; onchange?: (checked: boolean) => void; } declare const Switch: import("svelte").Component; type Switch = ReturnType; export default Switch;