import React from 'react'; import { TinyColumn as G2plotTinyColumn, TinyColumnOptions as G2plotProps } from '@antv/g2plot'; import { ContainerProps } from '../common/hooks/use-chart'; export interface TinyColumnConfig extends G2plotProps, ContainerProps { chartRef?: React.MutableRefObject; } declare const TinyColumnChart: React.ForwardRefExoticComponent>; export default TinyColumnChart;