import * as React from "react"; import { Ref, RefAttributes } from "react"; import { DOMProps } from "@react-types/shared"; import { ForwardedRefComponent } from "../../types/components"; export interface SVGProps extends DOMProps, RefAttributes { children: React.ReactElement>; className?: string; } export declare type SVGRef = Ref; declare const SVG: ForwardedRefComponent; export { SVG };