UNPKG

@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 523 B
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 RadioButton: import("svelte").Component<Props, {}, "">; type RadioButton = ReturnType<typeof RadioButton>; export default RadioButton; //# sourceMappingURL=RadioButton.svelte.d.ts.map