declare const lineOptions: (columns: any) => {
    backgroundColor: any;
    color: any;
    tooltip: {
        show: boolean;
        trigger: string;
        formatter: (params: any) => any;
    };
    legend: {
        trigger: string;
        left: string;
        top: string;
        show: boolean;
        itemWidth: number;
        itemHeight: number;
        textStyle: {
            fontSize: number;
            lineHeight: number;
            color: string;
            rich: {
                a: {
                    verticalAlign: string;
                };
            };
            padding: number[];
        };
    };
    grid: any;
    xAxis: {
        type: string;
        axisTick: {
            show: boolean;
            alignWithLabel: boolean;
        };
        axisLine: {
            show: boolean;
        };
        axisLabel: {
            fontSize: any;
            padding: number[];
            lineHeight: number;
            color: string;
        };
    }[];
    yAxis: {
        type: string;
        splitLine: {
            lineStyle: {
                type: string;
            };
        };
        axisLabel: {
            fontSize: any;
            color: string;
        };
    }[];
    series: never[];
};
export { lineOptions };
