export default Log; export type Level = import("./utils.js").Level; export type LogOptions = import("./node.js").LogOptions & { Log: typeof Log; }; export type LogOptionWrapConsole = import("./node.js").LogOptionWrapConsole; export type LogOptionHandleExitEvents = import("./node.js").LogOptionHandleExitEvents; export type ProcLogOptions = import("./ProcLog.js").ProcLogOptions; export type LogOptionsEcs = import("./ecs/LogEcs.js").LogOptionsEcs; export type MwLogOption = import("./browserLogs.js").MwLogOption; export type LogOptionsHttpLog = import("./httpLogs.js").LogOptionsHttpLog; export type IncomingMessageWithId = import("./httpLogs.js").IncomingMessageWithId; export type Serializer = import("./serializers/index.js").Serializer; import { Log } from './node.js'; import { LogEcs } from './ecs/LogEcs.js'; import { logger } from './logger.js'; import { ProcLog } from './ProcLog.js'; import { initProcLog } from './ProcLog.js'; import { EVENT_PROC_LOG } from './ProcLog.js'; import { browserLogs } from './browserLogs.js'; import { httpLogs } from './httpLogs.js'; export { Log, LogEcs, logger, ProcLog, initProcLog, EVENT_PROC_LOG, browserLogs, httpLogs };