import React from 'react'; export interface CircleProps extends React.HTMLAttributes { strokeWidth?: number; percent?: number; gapDegree?: number; gapPosition?: 'top' | 'right' | 'bottom' | 'left'; strokeLinecap?: 'inherit' | 'butt' | 'round' | 'square'; strokeColor?: string; width?: string | number; } declare const Circle: (props: CircleProps) => import("react/jsx-runtime").JSX.Element; export default Circle;