import type { ChartTheme } from '../themes/types.js'; export interface HeatmapChartProps { data: Record[]; x: string; y: string; value: string; width: number; height: number; theme?: ChartTheme; colorRange?: [string, string]; margin?: { top: number; right: number; bottom: number; left: number; }; } export declare function HeatmapChart({ data, x, y, value, width, height, theme, colorRange, margin, }: HeatmapChartProps): import("react/jsx-runtime").JSX.Element | null; //# sourceMappingURL=HeatmapChart.d.ts.map