import * as React from "react";
interface IProps extends React.SVGProps<SVGSVGElement> {
    title: string;
}
declare function SvgSearch({ title, ...props }: IProps): JSX.Element;
export default SvgSearch;
