import React from 'react'; interface SearchBarProps { value: string; onChange: (value: string) => void; onExit: () => void; } declare const SearchBar: React.FC; export default SearchBar; //# sourceMappingURL=SearchBar.d.ts.map