import { SVGProps } from 'react'; type SVGComponentProps = SVGProps & { size?: string; path?: string; __html?: string; }; export default function SVG({ size, fill, viewBox, path, children, __html, ...props }: SVGComponentProps): import("react").JSX.Element; export {};