/** * Prompt the user for a worker count. * * @param tierCap Upper bound (inclusive). * @param defaultWorkers Default value shown in the prompt. */ export declare function promptWorkerCount(tierCap: number, defaultWorkers: number): Promise; /** * Prompt the user for a claim code if not provided via --claim flag. */ export declare function promptClaimCode(): Promise; /** * Prompt the user to select a project directory from predefined options or a custom path. * * @param defaultDir - The resolved absolute default path (e.g. ~/Generacy/) * @param cwd - The current working directory (resolved absolute) * @returns The chosen absolute path */ export declare function selectDirectory(defaultDir: string, cwd: string): Promise; //# sourceMappingURL=prompts.d.ts.map