import React from 'react'; import { CommonProps } from '../Group'; import { CommonShapeProps } from './common'; export interface CircleStyle extends CommonShapeProps { /** * @description.en-US The radius of the circle. * @description.zh-CN εœ†ηš„εŠεΎ„ */ r: number; } interface CircleProps extends CommonProps { /** * @description.en-US style of shape */ style: CircleStyle; } declare const Circle: React.FC; export default Circle;