import type { Prompter } from "./confirm.js"; import type { ScaffoldInputs } from "./index.js"; export interface WizardOptions { prompter: Prompter; output?: NodeJS.WritableStream; skipFsChecks?: boolean; } /** * Run the 8-question fallback wizard. Output shape matches brief-first flow. */ export declare function runWizard(opts: WizardOptions): Promise;