import { Graph } from '../../../algorithms/graph/graph'; import { RankedPath } from '../../../algorithms/pathfinding/path-ranking'; import { Path } from '../../../algorithms/types/algorithm-results'; import { Edge, Node } from '../../../algorithms/types/graph'; /** * Rank paths by sum of PageRank scores along path. * Prefers paths through important nodes. * * @param graph - Graph to analyse * @param paths - Paths to rank * @param dampingFactor - PageRank damping (default: 0.85) * @returns Paths sorted by total PageRank (descending) */ export declare const pageRankRanker: (graph: Graph, paths: Path[], dampingFactor?: number) => RankedPath[]; //# sourceMappingURL=pagerank-ranker.d.ts.map