import { Observable } from 'rxjs'; import { ContextToken } from './context.model'; import { RoutingContextService } from './routing-context.service'; import * as i0 from "@angular/core"; /** * Generic service for resolving the context for the UI components. */ export declare class ContextService { protected routingContextService: RoutingContextService; constructor(routingContextService: RoutingContextService); /** * Returns the context for the given token. */ get(contextToken: ContextToken): Observable; /** * Resolves the context for the given token. */ protected resolveContext(contextToken: ContextToken): Observable; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; }