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