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