import React from 'react'; import { AreaOptions } from '@antv/g2plot'; import { BaseChartProps } from '../../BaseChart'; import './index.module.scss'; export declare type AreaChartProps = Omit, 'chart' | 'data'> & AreaOptions & { legendVisible?: boolean; isLineArea?: boolean; enableCustomTooltip?: boolean; renderTooltipTitle?(item: string): string; renderTooltipValue?(item: string): string; }; declare const AreaChart: React.ForwardRefExoticComponent, "data" | "chart"> & AreaOptions & { legendVisible?: boolean | undefined; isLineArea?: boolean | undefined; enableCustomTooltip?: boolean | undefined; renderTooltipTitle?(item: string): string; renderTooltipValue?(item: string): string; } & React.RefAttributes>; export default AreaChart;