import { Console } from "./console";
export declare class StandardOutConsole implements Console {
    private empty;
    clear(): void;
    add(data: string): void;
    get(): string;
    isEmpty(): boolean;
    getTrimmed(): string;
}
