export type RunsScope = "global" | "repo"; export declare function parseRunsScope(rawValue?: string): RunsScope; export declare function getRunsScope(): RunsScope; export declare function findRepoRoot(startDir?: string): string | undefined; export declare function getRepoRoot(startDir?: string): string; export declare function getRepoRunsDir(startDir?: string): string; export declare function getGlobalRunsDir(): string; export declare function resolveRunsDir(options?: { cwd?: string; override?: string; }): string; export declare function getReadableRunsDirs(options?: { cwd?: string; override?: string; }): string[]; export declare function resolveExistingRunDir(runRef: string, options?: { cwd?: string; override?: string; }): string; export declare function resolveRunRootFromRunDir(runDir: string, cwd?: string): string; export declare function resolveProjectRootForRun(runDir: string, entryImportPath?: string, fallbackCwd?: string): string; //# sourceMappingURL=runs.d.ts.map