import React from 'react';
type DataItem = {
    label: string;
    [key: string]: any;
};
type ChartSeries = {
    dataKey: string;
    label?: string;
    color?: string;
    strokeWidth?: number;
    dot?: boolean;
    fromColor?: string;
    toColor?: string;
};
interface AreaChartProps {
    data: DataItem[];
    series: ChartSeries[];
    fromColor?: string;
    toColor?: string;
    showGrid?: boolean;
    showLegend?: boolean;
    showXAxis?: boolean;
    showYAxis?: boolean;
    funcss?: string;
    curveType?: 'linear' | 'monotone' | 'step' | 'basis';
}
declare const Lines: React.FC<AreaChartProps>;
export default Lines;
