import React from 'react'; import { Gauge as G2plotGauge, GaugeOptions as G2plotProps } from '@antv/g2plot'; import { ContainerProps } from '../common/hooks/use-chart'; export interface GaugeConfig extends G2plotProps, ContainerProps { chartRef?: React.MutableRefObject; } declare const GaugeChart: React.ForwardRefExoticComponent>; export default GaugeChart;