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