export interface IPromptOptions {
    prompt?: string;
    type?: 'normal' | 'mask' | 'hide';
    /**
     * Requires user input if true, otherwise allows empty input
     */
    required?: boolean;
    default?: string;
}
declare const _default: {
    prompt(name: string, options?: IPromptOptions): Promise<any>;
    confirm(message: string): Promise<boolean>;
};
export default _default;
