import { ListChoiceOptions } from 'inquirer'; declare function askConfirmation(message: string, defaultResponse: boolean): Promise; declare function askQuestion(message: string, choices: ListChoiceOptions[], defaultResponseIndex: number): Promise; declare function askChoices(message: string, choices: { name: string; value: T; }[], defaultValue: T[]): Promise; export { askChoices, askConfirmation, askQuestion };