export declare enum LogLevel { INFO = "info", WARN = "warn", ERROR = "error", DEBUG = "debug" } export declare class Logger { static logLevelColors: { info: string; warn: string; error: string; debug: string; }; static log(level: LogLevel, message: string): void; static info(message: string): void; static warn(message: string): void; static error(message: string): void; static debug(message: string): void; private static getFileLink; }