export type LogLevel = 'none' | 'info' | 'debug'; export declare class Logger { static logLevel: LogLevel; static setLogLevel(level: LogLevel): void; static debug(message: string, ...args: any[]): void; static info(message: string, ...args: any[]): void; static warn(message: string, ...args: any[]): void; static error(message: string, ...args: any[]): void; }