import * as React from 'react'; export interface HeatmapProps extends React.HTMLAttributes { data: number[][]; labels?: { rows?: string[]; cols?: string[]; }; color?: string; } declare function Heatmap({ data, labels, color, className, ...props }: HeatmapProps): import("react/jsx-runtime").JSX.Element | null; export { Heatmap };