import React from 'react'; import { IChart } from '../Chart/Chart'; export interface ILineChart extends IChart { smooth?: boolean; smoothRatio?: number; } declare const LineChart: React.FC; export default LineChart;