import { ComputedCell, HeatMapDatum, HeatMapSvgProps } from './types'; interface HeatMapCellsProps { cells: ComputedCell[]; cellComponent: NonNullable['cellComponent']>; borderRadius: NonNullable['borderRadius']>; borderWidth: NonNullable['borderWidth']>; isInteractive: NonNullable['isInteractive']>; setActiveCell: (cell: ComputedCell | null) => void; onMouseEnter: HeatMapSvgProps['onMouseEnter']; onMouseMove: HeatMapSvgProps['onMouseMove']; onMouseLeave: HeatMapSvgProps['onMouseLeave']; onClick: HeatMapSvgProps['onClick']; tooltip: NonNullable['tooltip']>; enableLabels: NonNullable['enableLabels']>; } export declare const HeatMapCells: ({ cells, cellComponent, borderRadius, borderWidth, isInteractive, setActiveCell, onMouseEnter, onMouseMove, onMouseLeave, onClick, tooltip, enableLabels, }: HeatMapCellsProps) => import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=HeatMapCells.d.ts.map