export { getPageContext_withAsyncHook }; export { getRequestId_withAsyncHook }; export { getAsyncLocalStorage }; export type { AsyncStore }; import type { AsyncLocalStorage as AsyncLocalStorageType } from 'node:async_hooks'; import '../assertEnvServer.js'; type AsyncStore = null | { requestId: number; pageContext?: Record; }; declare function getAsyncLocalStorage(): Promise | null>; declare function getRequestId_withAsyncHook(): number | null; declare function getPageContext_withAsyncHook(): any;