export interface IEngineContext { requestId: string; } export declare function getEngineContext(): IEngineContext | undefined; export declare function runWithEngineContext(context: IEngineContext, fn: (...args: Array) => T): T;