import { TreeNode } from '@tracktor/types-treege'; /** * Get all ancestor names from tree * @param tree * @param uuid * @param excludeUuid */ declare const getAllAncestorFromTree: (tree: TreeNode | null, uuid: string | undefined, excludeUuid?: string) => { uuid: string; name?: string; }[]; export default getAllAncestorFromTree;