import type { ScopeMode } from '../../workspace/affected.js'; export interface ParsedScope { readonly scope: ScopeMode; readonly suite: string | undefined; /** `--fast` was given — `test` trims to the fast tiers. Issue #325. */ readonly fast: boolean; } export declare function parseScope(values: { all?: boolean | undefined; module?: string | undefined; staged?: boolean | undefined; fast?: boolean | undefined; full?: boolean | undefined; suite?: string | undefined; }): ParsedScope; //# sourceMappingURL=scope.d.ts.map