import React from 'react'; import { Bar as G2plotBar, BarOptions as G2plotProps } from '@antv/g2plot'; import { ContainerProps } from '../common/hooks/use-chart'; export interface BarConfig extends G2plotProps, ContainerProps { chartRef?: React.MutableRefObject; } declare const BarChart: React.ForwardRefExoticComponent>; export default BarChart;