import { FunctionComponent } from 'react'; declare type SearchBarProps = { value: string; onChange: (string: any) => void; clearSearch: () => void; }; declare const SearchBar: FunctionComponent; export default SearchBar;