import { FC } from 'react';
import { TooltipFormatter } from 'recharts';
import { LineProps, BaseChartProps } from '../types';
interface Props {
    tooltipFormatter: TooltipFormatter;
    lineProps: LineProps;
}
declare const LineChart: FC<Props & BaseChartProps>;
export default LineChart;
