export interface RequestContext { sessionId?: string; traceId?: string; } export declare function runWithRequestContext(context: RequestContext, fn: () => Promise): Promise; export declare function getSessionIdFromContext(): string | undefined; export declare function getTraceIdFromContext(): string | undefined; export declare function isInRequestContext(): boolean; //# sourceMappingURL=request-context.d.ts.map