import type { ServerOptions, AgentServerHandle } from './options.js'; /** * Node adapter. Wraps the runtime-neutral core with a Node-specific * `wsUpgrade` handler that uses the `ws` library. Imports `ws` * eagerly, so this module only works where `ws` is available — use * `@llui/agent/server/web` for Cloudflare Workers, Deno, or other * WHATWG runtimes. * * Spec §10.1, §10.4. */ export declare function createLluiAgentServer(opts?: ServerOptions): AgentServerHandle; //# sourceMappingURL=factory.d.ts.map