export declare enum LogLevel { DISABLED = -1, DEBUG = 0, INFO = 1, WARN = 2, ERROR = 3 } export default class Log { private static level; private static enabled; static setLevel(level: LogLevel): void; static enable(): void; static disable(): void; static getLevel(): LogLevel; static debug(...args: any[]): void; static info(...args: any[]): void; static warn(...args: any[]): void; static error(...args: any[]): void; }