import React from 'react'; import { Bullet as G2plotBullet, BulletOptions as G2plotProps } from '@antv/g2plot'; import { ContainerProps } from '../common/hooks/use-chart'; export interface BulletConfig extends Omit, ContainerProps { chartRef?: React.MutableRefObject; } declare const BulletChart: React.ForwardRefExoticComponent>; export default BulletChart;