interface LoggerOptions { debug?: boolean; role?: "HOST" | "CLIENT"; prefix?: string; } export declare class Logger { private debugMode; private role?; private prefix?; constructor(options?: LoggerOptions); log(message: string, data?: any): void; error(message: string, error?: any): void; warn(message: string, data?: any): void; info(message: string, data?: any): void; } export {}; //# sourceMappingURL=logger.d.ts.map