import type { Unit } from '@dynatrace-sdk/units'; import type { TreeMapFormatter } from '../types/internal.js'; import type { TreeMapRootNode } from '../types/treemap.js'; export declare function mapToInternalTree(tree: TreeMapRootNode, formatter: TreeMapFormatter, unit?: string | Unit): { id: string; value: number; name: string; formattedValue?: string; metadId?: string; color?: import("../../index.js").ColorToken; highlighted?: boolean; aggregatedNodes?: string[]; children: { id: string; value: number; name: string; formattedValue?: string; metadId?: string; color?: import("../../index.js").ColorToken; highlighted?: boolean; aggregatedNodes?: string[]; children: import("../types/internal.js").InternalTreeMapNode[]; }[]; }; //# sourceMappingURL=map-to-internal-tree.d.ts.map