///
import { AsyncLocalStorage } from 'async_hooks';
import { Request, Response } from 'express';
export declare abstract class Context {
id: any;
request: Request;
response: Response;
static asyncLocalStorage: AsyncLocalStorage;
static start: (data: Context) => void;
static get: () => Context | undefined;
}