/** * ESC-to-quit wrapper for Setup Wizard prompts. * * Wraps a wizard prompt so pressing ESC shows a confirm-before-quit dialog * instead of silently discarding input. Declining the dialog re-asks the * original question(s). */ import { type PromptAdapter, type PromptAnswers, type PromptQuestion } from '../ui/prompt-adapter.interface.js'; export declare function promptWithEscToQuit(prompt: PromptAdapter, questions: Array> | PromptQuestion, initialAnswers?: Partial, stdin?: NodeJS.ReadableStream): Promise; //# sourceMappingURL=wizard-esc-quit.d.ts.map