import React from 'react'; interface ChartHeatmapProps { data: number[][]; rowLabels: string[]; colLabels: string[]; className?: string; } export declare const ChartHeatmap: React.FC; export {};