export default class Logger {
    static spinner: any;
    static success(thisRef: any, message: string): void;
    static info(thisRef: any, message: string): void;
    static error(thisRef: any, message: string): void;
    static warn(thisRef: any, message: any): void;
    static progressStart(thisRef: any, message: string): void;
    static progressStop(thisRef: any, message: string): void;
    static progressStopError(thisRef: any, message: string): void;
}
