/** * Compute the set of graph nodes that participate in a dependency cycle. * * A node is considered "in a cycle" iff it sits in a strongly-connected * component (SCC) of size > 1, or has a self-edge (size-1 SCC that loops * back to itself). * * Implementation is iterative Tarjan's algorithm to avoid blowing the JS * call stack on very wide graphs. */ export declare const findCycleMembers: (edges: Record) => Set; //# sourceMappingURL=scc.d.ts.map