//#region src/core/async-local-storage-prerender.d.ts /** * Minimal AsyncLocalStorage for headless prerender (Node, single-threaded). * Ilha's router uses ALS for SSR head collection; Vite's client bundle externalizes * `node:async_hooks` to a non-constructor browser stub unless we alias to this module. */ declare class AsyncLocalStorage { #private; getStore(): T | undefined; run(store: T, fn: (...args: never[]) => R): R; enterWith(store: T): void; disable(): void; } //#endregion export { AsyncLocalStorage };