export type Choice = { message: string; name: string; }; /** * A utility class for prompting the user for input. * Based on the inquirer prompts library. */ export declare class Prompt { static confirm(message: string): Promise; static input(message: string): Promise; static select(message: string, choices: Choice[]): Promise; } //# sourceMappingURL=prompt.d.ts.map