import{Context}from'./types';exportdeclareclassBaseContextimplementsContext{private_currentContext;/** * Construct a new context which inherits values from an optional parent context. * * @param parentContext a context from which to inherit values */constructor(parentContext?:Map<symbol,unknown>);/** * Get a value from the context. * * @param key key which identifies a context value */getValue(key:symbol):unknown;/** * Create a new context which inherits from this context and has * the given key set to the given value. * * @param key context key for which to set the value * @param value value to set for the given key */setValue(key:symbol,value:unknown):Context;/** * Return a new context which inherits from this context but does * not contain a value for the given key. * * @param key context key for which to clear a value */deleteValue(key:symbol):Context;}/** The root context is used as the default parent context when there is no active context */exportdeclareconstROOT_CONTEXT:Context;/** Get a key to uniquely identify a context value */exportdeclarefunctioncreateContextKey(description:string):symbol;//# sourceMappingURL=context.d.ts.map