import { type LogLevel } from "../../logger.js"; import type { OutputManager } from "./outputManager.js"; /** * Create a logger that bridges to the OutputManager * This logger emits log events that are routed through OutputManager * for either Ink UI display or JSON output */ export declare function createBridgedLogger(outputManager: OutputManager, level?: LogLevel): import("../../logger.js").Logger;