export type LogLevel = "silent" | "info" | "debug"; export declare class Logger { private static level; static configure(level: LogLevel): void; static info(message: string): void; static debug(message: string): void; static warn(message: string): void; static error(message: string): void; }