import { ListChoiceOptions } from 'inquirer'; declare function promptConfirm(message: string): Promise; declare function promptSelect(message: string, { choices }?: { choices: (string | ListChoiceOptions)[]; }): Promise; declare function promptCheckbox(message: string, { choices }?: { choices: (string | ListChoiceOptions)[]; }): Promise; declare function promptInput(message: string, initial?: string): Promise; export { promptConfirm, promptSelect, promptCheckbox, promptInput };