export declare enum LogLevels { VERBOSE = 0, INFO = 1, WARN = 2, ERROR = 3, NONE = 4 } export declare const getLogLevel: () => keyof typeof LogLevels; export declare const setLogLevel: (level: keyof typeof LogLevels) => void; export declare const logWithPrefix: (level: LogLevels, message: string, ...args: any[]) => void;