import React from 'react'; import { Box as G2plotBox, BoxOptions as G2plotProps } from '@antv/g2plot'; import { ContainerProps } from '../common/hooks/use-chart'; export interface BoxConfig extends G2plotProps, ContainerProps { chartRef?: React.MutableRefObject; } declare const BoxChart: React.ForwardRefExoticComponent>; export default BoxChart;