import ChartAbstract, { ChartAbstractProps } from './ChartAbstract';
import ChartData from './ChartData';
import ItemLegend from './legends';
export interface AreaChartData {
    data: Partial<ChartData>[];
    style?: any;
}
export interface AreaChartProps extends ChartAbstractProps {
    data: AreaChartData[];
    legendData: ItemLegend[];
}
export default class AreaChart extends ChartAbstract {
    data: AreaChartData[];
    legendData: ItemLegend[];
    constructor(props: AreaChartProps);
}
