import * as React from 'react';
interface IProps {
type: 'rect' | 'circle';
width: number;
height: number;
stroke?: string;
strokeWidth?: number;
}
declare const Svg: React.ForwardRefExoticComponent<IProps & React.RefAttributes<any>>;
export default Svg;