declare const loglevels: readonly ["off", "error", "warn", "info", "debug"]; type LogLevel = (typeof loglevels)[number]; export declare const logger: { log: (level: Exclude, module: string, message: string, ...args: Array) => void; error: (module: string, message: string, ...args: Array) => void; warn: (module: string, message: string, ...args: Array) => void; info: (module: string, message: string, ...args: Array) => void; debug: (module: string, message: string, ...args: Array) => void; }; export {}; //# sourceMappingURL=logger.d.ts.map