import { type Parsed } from "../util.js"; import type { CheckScope } from "./scope.js"; export declare function maybeRefreshNavigation(args: { scope: CheckScope; parsed: Parsed; log: (line: string) => void; /** Test seam; the default re-runs a scoped capture through runCapture. */ recapture?: (targets: string[], routes: string[]) => Promise; }): Promise<{ costUsd: number; refreshed: number; }>;