import { type ChangeEvent, type KeyboardEvent } from 'react'; interface SearchInputProps { ref: React.Ref; value?: string; onChange: (event: ChangeEvent) => void; onKeyDown?: (event: KeyboardEvent) => void; placeholder?: string; narrowView?: boolean; } declare const SearchInput: import("react").ForwardRefExoticComponent & import("react").RefAttributes>; export default SearchInput;