import type { NitroAsyncContext } from "nitro/types"; import type { ServerRequest } from "srvx"; import { type UseContext } from "unctx"; export declare const nitroAsyncContext: UseContext; /** * * Access to the current Nitro request. * * @experimental * - Requires `experimental.asyncContext: true` config to work. * - Works in Node.js and limited runtimes only * */ export declare function useRequest(): ServerRequest;