/** * Unified SSR/DOM render host — explicit deployment bootstrap before renderToString/stream/mount. * Hosts must not call renderToString until ensureComponents() has run for the active closure. */ export declare function createRenderHost(distDir: string, opts?: Record): Promise<{ distDir: string; deployment: import("../shared/host.types.js").DeploymentDocument; dom: any; loadedChunkIds: Set; ensureComponents: (rootChunkIds: any) => Promise; closureChunkIds: (rootChunkIds: any) => Set; renderToString: any; renderToStream: any; mount: any; hydrate: any; resume: any; destroy: any; flushPending: any; registerComponents: any; }>;