import React from 'react'; import { Progress as G2plotProgress, ProgressOptions as G2plotProps } from '@antv/g2plot'; import { ContainerProps } from '../common/hooks/use-chart'; export interface ProgressConfig extends G2plotProps, ContainerProps { chartRef?: React.MutableRefObject; } declare const ProgressChart: React.ForwardRefExoticComponent>; export default ProgressChart;