import { JSONRPCError, JSONRPCRequest } from "../../types/types.ts";
/**
 * Helper to read and parse JSON body from Node.js IncomingMessage
 */
declare function jsonRpcBodyParser(body: string): Promise<JSONRPCRequest | JSONRPCError>;
export { jsonRpcBodyParser };
