import React from 'react';
interface SearchBarProps {
    searchTerm: string;
    onSearchChange: (term: string) => void;
}
declare const SearchBar: React.FC<SearchBarProps>;
export default SearchBar;
