import { Question } from "./Question"; import { IInquirer } from "./IInquirer"; export declare class CliInquirer implements IInquirer { private _prefix; constructor(); prompt(arg1: Question | Question[]): Promise; setPrefix(text: string): void; removePrefix(): void; getPrefix(): string; }