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) => { children: { children: InternalTreeMapNode[]; id: string; value: number; name: string; formattedValue?: string; metadId?: string; color?: import("../../index.js").ColorToken; highlighted?: boolean; aggregatedNodes?: string[]; }[]; id: string; value: number; name: string; formattedValue?: string; metadId?: string; color?: import("../../index.js").ColorToken; highlighted?: boolean; aggregatedNodes?: string[]; };