/** * `skaile deploy` — stand a workspace up on a deploy target, then manage its * lifecycle through the registry-owned detach handle. * * skaile deploy up [--project-dir

] [--target ] [--detach] * skaile deploy down [--project-dir

] * skaile deploy status [--project-dir

] * skaile deploy logs [--project-dir

] [--follow] * * `up` resolves a target via the explicit precedence chain (CLI `--target` * override > `skaile.yaml` `deploy:` > built-in `local`), loads any `plugins:` * cloud providers, creates the handle, and either holds it (foreground, stops * on SIGINT) or persists it (`--detach`). `down` / `status` / `logs` re-attach * via `target.restore(payload, ctx)`. */ import { Command } from "commander"; /** * Creates the `skaile deploy` command group. * * @returns Configured {@link Command} ready for `program.addCommand()`. * @docLink cli/commands/deploy#make-deploy-command */ export declare function makeDeployCommand(): Command; //# sourceMappingURL=deploy.d.ts.map