import { TreeNode } from '@tracktor/types-treege'; interface UpdatedNodeParams { tree: TreeNode | null; path: string; uuid: string; children: TreeNode; } /** * Update node in a tree * @param tree * @param path * @param uuid * @param children */ declare const updateNodeInTree: ({ tree, path, uuid, children }: UpdatedNodeParams) => TreeNode | null; export default updateNodeInTree;