/** * Per-host worker count resolution for `generacy launch`. * * Three input axes (flag / TTY / launch-config tierCap) collapse to a single * positive integer for the orchestrator container. See specs/716 §data-model * for the full behavioral matrix. */ import type { LaunchConfig, LaunchOptions } from './types.js'; export declare const CLI_FALLBACK_TIER_CAP = 8; export declare const SUGGESTED_FROM_HOST = 2; export interface WorkerCountResolution { workerCount: number; source: 'flag' | 'prompt' | 'default'; tierCapSource: 'launch-config' | 'fallback'; warnings: string[]; } export declare function resolveWorkerCount(opts: LaunchOptions, launchConfig: LaunchConfig, isTTY: boolean): Promise; //# sourceMappingURL=worker-count-resolver.d.ts.map