import { TreeNode } from '@tracktor/types-treege'; /** * Get a tree node by search path within the hierarchy * If searchPath is not provided, return the current node * @param node The starting element * @param searchPath The path to search for */ declare const getTree: (node: TreeNode | null | undefined, searchPath?: string | null) => TreeNode | null; export default getTree;