/** * Start Command * * Interactive one-shot onboarding for brand-new users. Designed to be the * landing experience for `npx @quickback-dev/cli start` in an empty folder. * * Difference from `create`: * - No required args. Prompts for template (default: cloudflare) and project * name (default: basename of cwd if cwd is empty, otherwise `my-app`). * Optional positionals skip the matching prompt: `quickback start blank`, * `quickback start todos my-app`. * - Auto-detects an empty cwd and scaffolds in-place; otherwise creates a * `.//` subdirectory. * - Lets the user keep going as long as possible before auth — the auth * gate sits inside `runCreate`, just before the compile API call. If * they cancel, the scaffold stays on disk and they're told how to * finish later. * * `start` is the marketing entry point; `create` remains for scripting. */ export declare function start(args: string[]): Promise; //# sourceMappingURL=start.d.ts.map