export default class Logger {
    static log(msg: any): void;
    static warn(msg: any): void;
    static error(msg: any): void;
}
