import { SVGAttributes } from 'react';
import { BoxOwnProps } from './Box';
import type { Assign, ForwardRef } from './types';
export interface SVGProps extends Assign<SVGAttributes<SVGElement>, BoxOwnProps> {
    size?: number | string;
}
export declare const SVG: ForwardRef<SVGSVGElement, SVGProps>;
