import type { ColorToken } from '../../core/types/color-palette.js'; import type { Formatter } from '../../core/types/formatter.js'; import { ClusterNode, LeafNode } from '../types/guards/node-guards.js'; import { InternalTreeMapNode } from '../types/internal.js'; import { type NameAccessor } from '../types/treemap.js'; export declare const getAggregatedLeaf: (nodes: InternalTreeMapNode[], clusterName: string, formatter: Formatter, clusterColorToken?: ColorToken, nameAccessor?: NameAccessor) => LeafNode; export declare const getAggregatedCluster: (nodes: ClusterNode[], formatter: Formatter) => ClusterNode;