export declare const barLineOptions: (num: any, columns: any) => {
    backgroundColor: any;
    grid: any;
    tooltip: {
        show: boolean;
        trigger: string;
        formatter: (params: any) => any;
    };
    legend: {
        trigger: string;
        orient: string;
        show: boolean;
        top: string;
        itemWidth: number;
        itemHeight: number;
        borderRadius: number;
        textStyle: {
            fontSize: number;
            lineHeight: number;
            color: string;
            rich: {
                a: {
                    verticalAlign: string;
                };
            };
            padding: number[];
        };
    };
    xAxis: {
        type: string;
        axisPointer: {
            type: string;
        };
        axisLabel: {
            fontSize: any;
            padding: any;
            color: string;
        };
        nameTextStyle: {
            color: string;
        };
    }[];
    yAxis: {
        splitLine: {
            lineStyle: {
                type: string;
            };
        };
        axisLabel: {
            color: string;
        };
        nameTextStyle: {
            color: string;
        };
    }[];
    series: any[];
};
