/** * True only when **`ENABLE_ACTIVIX_LOGXER=true`** and Activix package diagnostics * are not silenced by **`ACTIVIX_LOGS_LEVEL`** (or legacy **`ACTIVIX_LOG_LEVEL`**). * * With **`ENABLE_ACTIVIX_LOGXER`** unset or any value other than **`true`**, * Activix internal diagnostics run at error-only level by default. */ export declare function isActivixDiagnosticLoggingEnabled(): boolean; export type ActivixResolvedLogger = { debug(msg: string, meta?: Record): void; info(msg: string, meta?: Record): void; warn(msg: string, meta?: Record): void; error(msg: string, meta?: Record): void; }; /** * Internal logger for Activix when no `options.logger` is injected. * Error-only by default. Uses console diagnostics when **`ENABLE_ACTIVIX_LOGXER=true`**. */ export declare function resolveActivixInternalLogger(injected?: ActivixResolvedLogger): ActivixResolvedLogger; //# sourceMappingURL=activixInternalLogger.d.ts.map