import type { TreeViewItem } from '../types.js'; /** * Checks if a node is a descendant of another node * * Critical for preventing circular references when moving items in the tree, * ensuring we don't drop a parent into one of its own children */ export declare function isDescendantOf(potentialDescendant: TreeViewItem, potentialAncestor: TreeViewItem): boolean; //# sourceMappingURL=isDescendantOf.d.ts.map