/** * Deploy — environment sub-domain. * * - `deploy_environment_inspect` (read) — list envs, or one env + * variables + deployments + restart status + live health probe. * - `deploy_environment_lifecycle` (write) — create / update / delete * / restart / promote / regenerate-context via `{ action }`. * - `deploy_environment_variables` (write) — upsert / delete a single * environment variable. */ import type { McpRegistry } from "../../registry.js"; export declare const registerDeployEnvironmentTools: (registry: McpRegistry) => void;