export declare type PromptOptions = { choice?: Array; defaultChoice?: string; mask?: string; }; export declare function getProgressBar(action: string): (percent: number) => void; export declare function getPassword(prompt: string): Promise; export declare function getMessage(prompt: string): Promise; export declare function getChoice(prompt: string, choices: string, defaultChoice?: string): Promise;