import React from 'react';
import { IChart } from '../Chart/Chart';
export interface IAreaChart extends IChart {
smooth?: boolean;
smoothRatio?: number;
linearGradient?: boolean;
}
declare const AreaChart: React.FC<IAreaChart>;
export default AreaChart;