import { AsyncLocalStorage } from "node:async_hooks"; import type { Storage } from "unstorage"; /** * Stack of URLs currently rendering in the active async context (oldest first). * A repeated entry signals a render cycle. */ export declare const prerenderRenderingURLs: AsyncLocalStorage | null; export declare const payloadCache: Storage | null; export declare const islandCache: Storage | null; export declare const islandPropCache: Storage | null; export declare const sharedPrerenderPromises: Map> | null; interface SharedPrerenderCache { get(key: string): Promise | undefined; set(key: string, value: Promise): Promise; } export declare const sharedPrerenderCache: SharedPrerenderCache | null; export {};