/** * `scai cli health` — fan-out probe across every environment in the active * tenant. Picks the right probe per type: * - CM: GET /healthz/ready * - EH: most-recent deployment status (the editing-host's deploy-API * hostname is internal and doesn't resolve over the public * internet, so /healthz/ready isn't reachable from a laptop) * - unprovisioned: skipped — never had a deployment to probe * * Designed to answer "what's the health of all my environments?" in * one shot. The narrower `scai provision deploy environments health` command * stays around for single-env probes by ID/name. */ import type { DeployBaseOptions } from "./types.js"; export type DeployHealthOptions = DeployBaseOptions & { project?: string; type?: string; /** Skip per-environment probes — list status only. */ noProbe?: boolean; /** Per-env probe concurrency. Default 8. */ concurrency?: number; }; export declare const runDeployHealth: (options: DeployHealthOptions) => Promise;