import { Context as ContextInterface, ContainerInterface, Plan, Request } from '../interfaces/interfaces'; export declare class Context implements ContextInterface { id: number; container: ContainerInterface; plan: Plan; currentRequest: Request; constructor(container: ContainerInterface); addPlan(plan: Plan): void; setCurrentRequest(currentRequest: Request): void; }