/** * treeEngine — pure functions for hierarchical tree operations. * * @module engine/treeEngine * @see FMPV-MVWC-E005-S002 */ import type { MasterPatternViewEntity } from '../types/service.types'; import type { MasterPatternViewTreeNode } from '../types/tree.types'; /** * Returns true if `potentialDescendantId` is a descendant of `ancestorId` in the flat node list. */ export declare function isDescendant(potentialDescendantId: string, ancestorId: string, nodes: MasterPatternViewTreeNode[]): boolean; //# sourceMappingURL=treeEngine.d.ts.map