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