/** * Loggers for MCP module * Can be controlled with DEBUG env variable using these patterns: * - All MCP logs: DEBUG="mod:mcp=debug" * - Only client logs: DEBUG="mod:mcp/client=debug" * - Only transport logs: DEBUG="mod:mcp/transport=debug" * - Tools logs: DEBUG="mod:mcp/tools=debug" * - Connection logs: DEBUG="mod:mcp/connection=debug" */ export declare const mcpLoggers: { mcp: import("..").Logger; client: import("..").Logger; transport: import("..").Logger; tools: import("..").Logger; connection: import("..").Logger; };