import { Types } from "mongoose"; export interface LogEntry { level: string; module: string; message: any; location?: string; sessionId?: Types.ObjectId | null; } export interface LogOptions { minLevels: { [module: string]: string; }; } export declare class LogEntry { constructor(level: string, module: string, message: any, location?: string, sessionId?: Types.ObjectId | null); } //# sourceMappingURL=log.event.interface.d.ts.map