import { SVGProps } from 'react'; type SVGRProps = { title?: string; }; declare const SvgComponent: ({ title, ...props }: SVGProps & SVGRProps) => import("react/jsx-runtime").JSX.Element; export default SvgComponent;