import type { ProjectGraph } from "../graph/project-graph.js"; import type { RankedRef } from "./context-bundle.js"; export declare function tokenizeGoal(goal: string): readonly string[]; export interface RankingInputs { readonly goal: string; readonly seedFiles: readonly string[]; readonly graph: ProjectGraph; } export declare function rankFiles(inputs: RankingInputs): readonly RankedRef[]; export declare function rankDocs(goal: string, graph: ProjectGraph): readonly RankedRef[]; //# sourceMappingURL=ranking.d.ts.map