@senka-ai/ui
Version:
A modern, type-safe Svelte 5 UI component library with full theme support, accessibility standards, and robust state management patterns
11 lines • 508 B
TypeScript
import type { BaseProps, SizedComponent, ChangeHandler, ChildrenComponent, InteractiveHandlers } from '../../type/component';
interface Props extends BaseProps, SizedComponent, ChangeHandler<boolean>, ChildrenComponent, InteractiveHandlers {
checked?: boolean;
name?: string;
value?: string;
label?: string;
}
declare const Checkbox: import("svelte").Component<Props, {}, "">;
type Checkbox = ReturnType<typeof Checkbox>;
export default Checkbox;
//# sourceMappingURL=Checkbox.svelte.d.ts.map