import { SVGProps } from "react"; interface SVGRProps { title?: string; titleId?: string; } declare const SvgClose: ({ title, titleId, ...props }: SVGProps & SVGRProps) => JSX.Element; export default SvgClose;