import { type Action, type Link, type Graph } from './types.js'; import { type Hash } from 'util/index.js'; /** Returns true if `a` is a successor of `b` */ export declare const isSuccessor: (graph: Graph, a: Link, b: Link) => boolean; export declare const isSuccessorHash: (graph: Graph, a: Hash, b: Hash) => boolean; //# sourceMappingURL=isSuccessor.d.ts.map