/// import { Icon } from '../_utils/icon'; export declare type SearchIconProps = Icon & Readonly<{ strokeWidth?: string; }>; export declare const SearchIcon: { ({ strokeWidth, ...props }: SearchIconProps): JSX.Element; defaultProps: { strokeWidth: string; className: string; iconClassName: string; iconColor: string; size: number; title: string; badgeAriaLabel: string; badgeContent: string; isDisabled: boolean; }; };