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