interface SearchInputProps { value?: string; placeholder?: string; label?: string; disabled?: boolean; size?: 'sm' | 'md' | 'lg'; class?: string; oninput?: (e: Event) => void; onsubmit?: (value: string) => void; onchange?: (e: Event) => void; } declare const SearchInput: import("svelte").Component; type SearchInput = ReturnType; export default SearchInput;