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; highlightedItem?: LegendItem; highlightingMap: HighlightingMap; } export declare const TreeMapCanvas: ({ treeMapData, highlightedItem, highlightingMap, }: TreeMapCanvasProps) => JSX.Element; export {};