/** * Log Filter Installation * * Minimal runtime log filter for reducing noise in production. */ import { createRequire } from 'node:module'; type NodeGlobalWithRequire = typeof globalThis & { require?: ReturnType; }; type UnknownRecord = Record; declare function resolveBoolFromEnv(value: unknown, fallback: boolean): boolean; declare function isMinimalRuntimeLogEnabled(): boolean; declare function installMinimalRuntimeLogFilter(): void; export { installMinimalRuntimeLogFilter, isMinimalRuntimeLogEnabled, resolveBoolFromEnv }; export type { NodeGlobalWithRequire, UnknownRecord };