import React from 'react'; import { Pie as G2plotPie, PieOptions as G2plotProps } from '@antv/g2plot'; import { ContainerProps } from '../common/hooks/use-chart'; export interface PieConfig extends G2plotProps, ContainerProps { chartRef?: React.MutableRefObject; } declare const PieChart: React.ForwardRefExoticComponent>; export default PieChart;