/** * launch-run — Step 4 of the hula.launch workflow. * Invoked as: * `hula script launch-run -- [--handoff ] [--test] [--skip-regression] [--kill] [--kill-and-relaunch]` * `hula script launch-run -- --kill` (cancel only; no plan path) * `hula script launch-run -- --folder [--group-id ] [--plan = ...]` * * NOTE: this `--folder` (a PARENT directory that contains sibling repos) is * DIFFERENT from /hula-plan's `--folder` (a plans SUBDIRECTORY). In folder mode * the plan path is resolved per repository, so the positional plan path is not * used — a single positional is the branch name (mirrors the --kill re-homing). * * Performs: hula launch (which handles plan upload automatically). * Emits structured JSON to stdout; all other output goes to stderr. * Exit codes: 0=success, 1=user error, 2=tool error. * * Node port of `hula-launch-run.sh` (cross-platform: no bash, no jq). */ export declare function main(args: string[]): Promise; //# sourceMappingURL=launch-run.d.ts.map