import React from 'react'; import { Stock as G2plotStock, StockOptions as G2plotProps } from '@antv/g2plot'; import { ContainerProps } from '../common/hooks/use-chart'; export interface StockConfig extends G2plotProps, ContainerProps { chartRef?: React.MutableRefObject; } declare const StockChart: React.ForwardRefExoticComponent>; export default StockChart;