import { TutorialRegistryCache } from './tutorials-registry-cache'; import { Resolve, ActivatedRouteSnapshot } from '@angular/router'; import { Observable } from 'rxjs'; import { StepsTemplatesLoader } from './steps-templates-loader'; export declare class PatchLoadResolve implements Resolve { private cache; private templatesCache; constructor(cache: TutorialRegistryCache, templatesCache: StepsTemplatesLoader); resolve(route: ActivatedRouteSnapshot): Observable; }