import { type ResolvedConfig, type ShotRecord } from "../types.js"; import { type Parsed } from "../util.js"; export interface CheckScope { resolved: ResolvedConfig; /** The web shots this run will consider, after --targets and --routes. */ shots: ShotRecord[]; shotsById: Map; } export declare function resolveScope(parsed: Parsed): Promise;