import React from "react";
import "./heatmap.css";
export interface HeatmapProps {
    data: number[][];
    width?: number;
    height?: number;
    colors?: string[];
    animationDuration?: number;
}
export declare const Heatmap: React.FC<HeatmapProps>;
