export declare function getBarConfiguration(): {
    chart: {
        type: string;
    };
    plotOptions: {
        bar: {
            maxPointWidth: number;
            dataLabels: {
                enabled: boolean;
                padding: number;
            };
        };
        series: {
            states: {
                hover: {
                    enabled: boolean;
                };
            };
        };
    };
    yAxis: {
        stackLabels: {
            enabled: boolean;
        };
    }[];
};
