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