export declare class Logger {
    private static lastMessage;
    static begin(message: string): void;
    static end(failed?: boolean): void;
}
