import type { TreemapNodeElement } from './interface'; export declare const flattenNodes: (nodes: TreemapNodeElement[], output?: T[], options?: { maxDepth?: number; callback?: (node: TreemapNodeElement) => T; }) => T[];