import React from 'react'; import { Liquid as G2plotLiquid, LiquidOptions as G2plotProps } from '@antv/g2plot'; import { ContainerProps } from '../common/hooks/use-chart'; export interface LiquidConfig extends G2plotProps, ContainerProps { chartRef?: React.MutableRefObject; } declare const LiquidChart: React.ForwardRefExoticComponent>; export default LiquidChart;