import { type ReviewPlan, type ReviewRequest } from "./contracts.js"; export declare function resolveReviewScope(request: ReviewRequest, options?: { cwd?: string; workflowVersion?: number; assignments?: ReviewPlan["assignments"]; stages?: ReviewPlan["stages"]; }): Promise; export declare function hashScopeFiles(root: string, paths: string[], concurrency?: number): Promise>; export declare function isPathInside(root: string, candidate: string): boolean;