/// import { SvgIconProps } from '@mui/material/SvgIcon'; export interface SearchIconProps extends SvgIconProps { /** Width and height in px (square) */ size?: number | string; } declare function SearchIcon({ size, sx, className, ...props }: SearchIconProps): import("react").JSX.Element; export default SearchIcon;