/** * RemoteAgent transport 工厂。 * * 关键点(中文) * - `RemoteAgent` 对外只接收 url,这里负责选择具体 transport。 * - HTTP token 只传给 HTTP transport,RPC 不读取 token。 */ import type { RemoteAgentTransport } from "../remote/RemoteTransport.js"; /** * 根据 URL 协议创建远程 transport。 */ export declare function create_remote_agent_transport(url: string, token?: string): RemoteAgentTransport; //# sourceMappingURL=TransportFactory.d.ts.map