import { RankedPath } from '../../../algorithms/pathfinding/path-ranking'; import { Path } from '../../../algorithms/types/algorithm-results'; import { Edge, Node } from '../../../algorithms/types/graph'; /** * Random path ranking baseline. * Shuffles paths randomly for comparison. * * @param paths - Paths to rank * @param seed - Random seed for reproducibility * @returns Randomly ordered paths with scores */ export declare const randomRanker: (paths: Path[], seed?: number) => RankedPath[]; //# sourceMappingURL=random-ranker.d.ts.map