/** * Claude Protocol Module * * Bidirectional stream-json protocol implementation for Claude CLI. * * @module agents/claude/protocol */ export { ProtocolPeer, type IProtocolClient, type MessageHandler, type ErrorHandler, } from './protocol-peer.js'; export { ClaudeAgentClient } from './client.js'; export { parseStreamJsonLine, readStreamJson, serializeStreamJson, } from './utils.js'; //# sourceMappingURL=index.d.ts.map