import { AsyncLocalStorage } from 'async_hooks';
import { ParsedAgent } from './agent';
export type RequestContext = {
    userId?: string | null;
    url?: string;
    body?: any;
    agent?: ParsedAgent | null;
};
export declare function getRequestContext(): RequestContext | undefined;
export declare const asyncLocalStorage: AsyncLocalStorage<RequestContext>;
