import { HierarchyRectangularNode } from '@visx/hierarchy/lib/types'; import { type JSX } from 'react'; import type { LegendItem } from '../../core/components/legend/categorical/types/legend.js'; import { type HighlightingMap, type InternalTreeMapNode } from '../types/internal.js'; interface TreeMapCanvasProps { treeMapData: HierarchyRectangularNode; highlightedItems?: LegendItem[]; highlightingMap: HighlightingMap; } export declare const TreeMapCanvas: ({ treeMapData, highlightedItems, highlightingMap, }: TreeMapCanvasProps) => JSX.Element; export {};