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

14 lines 586 B
import type { BaseProps, FullWidthComponent, KeyboardHandler } from '../../type/component'; interface Props extends BaseProps, FullWidthComponent, KeyboardHandler { placeholder?: string; value?: string; name?: string; oninput?: (event: Event) => void; onchange?: (event: Event) => void; onfocus?: (event: FocusEvent) => void; onblur?: (event: FocusEvent) => void; } declare const SearchBar: import("svelte").Component<Props, {}, "value">; type SearchBar = ReturnType<typeof SearchBar>; export default SearchBar; //# sourceMappingURL=SearchBar.svelte.d.ts.map