import React from 'react'; import { Histogram as G2plotHistogram, HistogramOptions as G2plotProps } from '@antv/g2plot'; import { ContainerProps } from '../common/hooks/use-chart'; export interface HistogramConfig extends G2plotProps, ContainerProps { chartRef?: React.MutableRefObject; } declare const HistogramChart: React.ForwardRefExoticComponent>; export default HistogramChart;