/** * **confirmQuestionNow** * * Asks the user a yes/no question. For example: * * ```ts * const continue = await confirmQuestionNow('Shall we continue?'); * ``` * * **Note:** use this function when you want to ask a question right away. * If you want to compose functions into an array of questions and then ask, * use `confirmQuestion()` instead. */ export declare const askConfirmQuestion: (question: string) => Promise; //# sourceMappingURL=askConfirmQuestion.d.ts.map