/** * `@llui/dom/ssr/linkedom` — linkedom-backed `DomEnv` factory. * * Linkedom is a lightweight JSDOM alternative — smaller bundle, works * on Cloudflare Workers and other strict-isolate runtimes where jsdom's * transitive `whatwg-url` / `tr46` / `punycode` chain fails to resolve. */ import type { DomEnv } from '../dom-env.js'; /** * Construct a `DomEnv` backed by a fresh linkedom instance. Each call * returns a new env — no process-level state, safe under concurrency * and compatible with Cloudflare Workers. * * Requires `linkedom` as an installed dependency. */ export declare function linkedomEnv(): Promise; //# sourceMappingURL=linkedom.d.ts.map