/** * Prompt Utility * User input prompts */ import inquirer from 'inquirer'; export declare function prompt(question: inquirer.QuestionCollection): Promise; export declare function confirm(message: string, defaultValue?: boolean): Promise; export declare function select(message: string, choices: string[], defaultValue?: string): Promise; export declare function input(message: string, defaultValue?: string, validate?: (input: string) => boolean | string): Promise; //# sourceMappingURL=prompt.d.ts.map