import { RuntimeCache } from './cache/types'; type Context = { waitUntil?: (promise: Promise) => void; cache?: RuntimeCache; headers?: Record; }; export declare const SYMBOL_FOR_REQ_CONTEXT: unique symbol; export declare function getContext(): Context; export {};