import { CSSProperties } from 'react'; import { Locale } from '../../types'; type SearchProps = { onSearch: (searchTerm: string) => void; style?: CSSProperties; lang: Locale; }; declare function Search({ onSearch, lang, style }: SearchProps): import("react/jsx-runtime").JSX.Element; export default Search;