import React from 'react'; import { Waterfall as G2plotWaterfall, WaterfallOptions as G2plotProps } from '@antv/g2plot'; import { ContainerProps } from '../common/hooks/use-chart'; export interface WaterfallConfig extends G2plotProps, ContainerProps { chartRef?: React.MutableRefObject; } declare const WaterfallChart: React.ForwardRefExoticComponent>; export default WaterfallChart;