import React from 'react'; import { RingProgress as G2plotRingProgress, RingProgressOptions as G2plotProps } from '@antv/g2plot'; import { ContainerProps } from '../common/hooks/use-chart'; export interface RingProgressConfig extends G2plotProps, ContainerProps { chartRef?: React.MutableRefObject; } declare const RingProgressChart: React.ForwardRefExoticComponent>; export default RingProgressChart;