interface Props { children?: import('svelte').Snippet<[{ value: string; clear: () => void; }]>; value?: string; placeholder?: string; disabled?: boolean; required?: boolean; name?: string; id?: string; class?: string; inputClass?: string; clearLabel?: string; 'aria-label'?: string; 'aria-labelledby'?: string; 'aria-describedby'?: string; oninput?: (event: Event) => void; onchange?: (event: Event) => void; onclear?: () => void; } declare const SearchInput: import("svelte").Component; type SearchInput = ReturnType; export default SearchInput;