export declare enum LogLevel { NONE = 0, ERROR = 1, WARN = 2, INFO = 3, DEBUG = 4, TRACE = 5 } export declare class Logger { private static level; private static prefix; static configure(config: { level: LogLevel; prefix?: string; }): void; static trace(...args: unknown[]): void; static debug(...args: unknown[]): void; static info(...args: unknown[]): void; static warn(...args: unknown[]): void; static error(...args: unknown[]): void; }