import type { InternalTreeMapNode } from '../types/internal.js'; /** * Function to copy and sort tree 2 levels deep * @param rootNode - InternalTreeMapNode * @returns - sorted InternalTreeMapNode */ export declare const getSortedTree: (rootNode: InternalTreeMapNode) => { 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: InternalTreeMapNode[]; }[]; }; //# sourceMappingURL=get-sorted-tree.d.ts.map