import type { AbstractTreeNode } from '../interfaces';
/** Get the height/depth of a tree (0-based) */
export default function getTreeDepth(nodes: AbstractTreeNode[]): number;
