import React, { ReactElement } from 'react'; import { LineOptions } from '@antv/g2plot'; import { BaseChartProps } from '../../BaseChart'; import './index.module.scss'; export declare type LineChartProps = Omit, 'chart' | 'data'> & LineOptions & { xField: string; yField: string; seriesField: string; tooltipHTMLVisible?: boolean; customTooltipHTML?: (tooltipItems: unknown) => ReactElement; }; declare const LineChart: React.ForwardRefExoticComponent, "data" | "chart"> & LineOptions & { xField: string; yField: string; seriesField: string; tooltipHTMLVisible?: boolean | undefined; customTooltipHTML?: ((tooltipItems: unknown) => ReactElement) | undefined; } & React.RefAttributes>; export default LineChart;