/** * 通过路径获取树节点 * @param root 树根节点 * @param path 路径 * @param childLabel 孩子标签 * @returns 路径最后一个树节点 */ export declare const getTreeNodeByPath: (root: any, path: number[], childLabel: string) => any;