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