export type LogLevel = 'debug' | 'info' | 'warn' | 'error'; export declare function setDebugMode(enabled: boolean): void; export declare function isDebugMode(): boolean; export declare function getLogFilePath(): string; export declare const logger: { debug(msg: string): void; info(msg: string): void; warn(msg: string): void; error(msg: string): void; };