import { ReactElement } from 'react'; export interface SearchProps { size?: number; color?: string; accessibleTitle?: string; } /** * @deprecated Use instead */ declare const Search: ({ size, color, accessibleTitle, ...otherProps }: SearchProps) => ReactElement; export default Search;