import * as inquirer from 'inquirer'; declare type Omit = Pick>; export declare type Options = Partial>; export declare function askForString(phrase: string, options?: Options): Promise; export declare function askForPassword(phrase: string, options?: Options): Promise; export {};