import React from 'react'; import { Line as G2plotLine, LineOptions as G2plotProps } from '@antv/g2plot'; import { ContainerProps } from '../common/hooks/use-chart'; export interface LineConfig extends G2plotProps, ContainerProps { chartRef?: React.MutableRefObject; } declare const LineChart: React.ForwardRefExoticComponent>; export default LineChart;