export type ContinuationMcpServerTransport = "stdio" | "http" | "unsupported"; /** * Classify the MCP transports that can safely receive request-bound * continuation capabilities. Kept in the harness package so startup * validation and runtime injection enforce one contract. */ export declare function classifyContinuationMcpServerTransport(value: unknown): ContinuationMcpServerTransport; export declare function isStdioMcpServerSpec(value: unknown): value is Record; //# sourceMappingURL=mcp-server-transport.d.ts.map