import React from "react";
interface HeatMapInf {
    title?: string;
    colorRange: {
        from: number;
        to: number;
        color: string;
        name: string;
    }[];
    series: {
        name: string;
        data: number[];
        total?: number;
    }[];
    xaxis: {
        labels?: string[];
        totals?: number[];
    };
    legends?: {
        name: string;
        color: string;
    }[];
    chartStyle?: React.CSSProperties;
}
export declare const HeatMap: ({ series, xaxis, title, legends, colorRange, chartStyle, }: HeatMapInf) => import("react/jsx-runtime").JSX.Element;
export {};
