import { IHighchartsSeriesExtend } from "../../../../interfaces/HighchartsExtend";
export declare function resetPointPaddingForTooSmallHeatmapCells(series: IHighchartsSeriesExtend): void;
export declare function getHeatmapConfiguration(): {
    chart: {
        type: string;
        marginTop: number;
        marginRight: number;
        spacingRight: number;
    };
    plotOptions: {
        heatmap: {
            dataLabels: {
                enabled: boolean;
                allowOverlap: boolean;
                crop: boolean;
                overflow: string;
            };
            point: {
                events: {
                    mouseOver(): void;
                };
            };
            events: {
                afterGeneratePoints(): void;
            };
        };
    };
    yAxis: {
        labels: {
            formatter(): any;
        };
    }[];
};
