import React from 'react';
import { IChart } from '../Chart/Chart';
export declare type ILineChart = IChart & {
    smooth?: boolean;
    smoothRatio?: number;
};
declare const LineChart: React.FC<ILineChart>;
export default LineChart;
