/** * The HTTP statuses that mean "not now", never "not you": the request was fine, the service * was not ready. One list, because the daemon (run.ts) and the CLI's failure contract * (hosting/cli-failure.ts) must agree on it — two names for one rule is how they drift. */ export declare const TRANSIENT_STATUSES: readonly number[]; export declare function isTransientStatus(status: number): boolean;