import type { InitOptions } from './types.js'; /** * Run the interactive prompt flow using `@clack/prompts`. * * @param defaults - Partial options already provided via CLI flags or * auto-detection. Values present in `defaults` skip the corresponding * prompt. * @param gitRoot - Absolute path to the git repository root. Used to * derive the default project name and to load an existing config. * @returns Partial options collected from the user. The resolver merges * these with flags and auto-detected values to produce a complete * `InitOptions`. */ export declare function runInteractivePrompts(defaults: Partial, gitRoot: string): Promise>; //# sourceMappingURL=prompts.d.ts.map