claritykit-svelte
Version:
A comprehensive Svelte component library focused on accessibility, ADHD-optimized design, developer experience, and full SSR compatibility
23 lines • 584 B
TypeScript
declare const Checkbox: import("svelte").Component<{
id?: any;
name?: string;
checked?: boolean;
value?: string;
label?: string;
description?: string;
error?: string;
disabled?: boolean;
readonly?: boolean;
required?: boolean;
indeterminate?: boolean;
size?: string;
class?: string;
onchange: any;
onkeydown: any;
onfocus: any;
onblur: any;
onescape: any;
} & Record<string, any>, {}, "checked">;
type Checkbox = ReturnType<typeof Checkbox>;
export default Checkbox;
//# sourceMappingURL=Checkbox.svelte.d.ts.map