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