export interface SearchInputProps { inputValue: string; placeholder: string; onChange: (value: string) => void; onClear: () => void; onSubmit: (e: React.FormEvent) => void; } export declare function SearchInput({ inputValue, placeholder, onChange, onClear, onSubmit, }: SearchInputProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=SearchInput.d.ts.map