import { Dispatch, SetStateAction } from 'react';
export interface Props {
    onChange: any;
    searchTerm: string;
    isSearchVisible: boolean;
    setIsSearchVisible: Dispatch<SetStateAction<boolean>>;
}
declare const Search: ({ onChange, searchTerm, isSearchVisible, setIsSearchVisible }: Props) => JSX.Element;
export default Search;
