/// <reference types="react" />
import { BoxProps } from '../box';
interface SVGProps {
    viewBox?: string;
    fill?: string;
}
declare type SVG = SVGProps & BoxProps;
export declare const Svg: ({ width, height, viewBox, fill, ...rest }: SVG) => JSX.Element;
export {};
