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

13 lines 496 B
import type { BaseProps, FullWidthComponent, ChildrenComponent } from '../../type/component'; interface Props extends BaseProps, FullWidthComponent, ChildrenComponent { label?: string; helperText?: string; error?: string; showLabel?: boolean; showHelperText?: boolean; for?: string; } declare const FormField: import("svelte").Component<Props, {}, "">; type FormField = ReturnType<typeof FormField>; export default FormField; //# sourceMappingURL=FormField.svelte.d.ts.map