import { FunctionComponent, ReactNode } from 'react' import { ViewProps } from '@tarojs/components' export interface CircleProps extends ViewProps { text?: ReactNode lineCap?: string value?: number speed?: number size?: number fill?: string layerColor?: string color?: string | Record strokeWidth?: number clockwise?: boolean children?: ReactNode } declare const Circle: FunctionComponent export { Circle }