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 390 B
import type { ButtonLikeComponent } from '../../type/component'; interface Props extends ButtonLikeComponent { label?: string; helperText?: string; error?: string; } declare const UtilityExample: import("svelte").Component<Props, {}, "">; type UtilityExample = ReturnType<typeof UtilityExample>; export default UtilityExample; //# sourceMappingURL=UtilityExample.svelte.d.ts.map