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

10 lines 423 B
import type { BaseProps, ChangeHandler, ChildrenComponent } from '../../type/component'; interface Props extends BaseProps, ChangeHandler<string>, ChildrenComponent { value?: string; name: string; disabled?: boolean; } declare const RadioGroup: import("svelte").Component<Props, {}, "">; type RadioGroup = ReturnType<typeof RadioGroup>; export default RadioGroup; //# sourceMappingURL=RadioGroup.svelte.d.ts.map