import { HierarchyRectangularNode } from '@visx/hierarchy/lib/types.js'; import type { LegendItem } from '../../core/components/legend/categorical/types/legend.js'; import { type HighlightingMap, type InternalTreeMapNode } from '../types/internal.js'; export interface TreeMapClusterProps { treeMapData: HierarchyRectangularNode; highlightedItem?: LegendItem; highlightingMap: HighlightingMap; } export declare const TreeMapCluster: (props: TreeMapClusterProps) => import("react/jsx-runtime").JSX.Element[];