import type { CheckboxView } from './types';
declare const Checkbox: import("svelte").Component<CheckboxView, {}, "disabled" | "checked" | "group">;
type Checkbox = ReturnType<typeof Checkbox>;
export default Checkbox;
