/** * `generacy launch` command — claim-code first-run flow. * * Bootstraps a new cluster from a cloud-issued claim code: * 1. Validate Node version (>=20) and Docker reachability * 2. Read --claim or prompt for it * 3. Fetch launch-config from cloud API * 4. Scaffold project directory with config files * 5. docker compose pull + up * 6. Stream logs until activation URL appears * 7. Auto-open browser with verification URL * 8. Register cluster in ~/.generacy/clusters.json */ import { Command } from 'commander'; /** * Create the `launch` subcommand. */ export declare function launchCommand(): Command; //# sourceMappingURL=index.d.ts.map