type $$ComponentProps = { checked?: boolean; class?: string; [key: string]: any; }; declare const Checkbox: import("svelte").Component<$$ComponentProps, {}, "checked">; type Checkbox = ReturnType; export default Checkbox;