/** * Quickstart Command * Issue #1195: `npx commandmate` with no arguments walks the user from zero to a running server * * Chains the exit-free cores of init/start (runInit/runStart) so a single invocation can * configure, launch, await readiness and open the browser without terminating in between. */ export interface QuickstartOptions { /** Set to false by --no-open */ open?: boolean; } /** * Execute the guided quickstart flow */ export declare function quickstartCommand(options?: QuickstartOptions): Promise; //# sourceMappingURL=quickstart.d.ts.map