import { RequestContext } from "@decaf-ts/for-http/server"; import { type Request } from "express"; import { DecafServerCtx } from "../constants.d.cts"; export declare class DecafRequestContext extends RequestContext { private readonly req; uuid: string | Promise; readonly request: Request; constructor(req: Request); get headers(): Record | undefined; put(record: Record): void; }