import { ViewContainerRef, AfterViewInit, ComponentFactoryResolver } from '@angular/core'; import { NbAuthService } from '@nebular/auth'; import { NbMenuService } from '@nebular/theme'; import { Subject } from 'rxjs'; import { LazyComponent } from '.'; export declare class AdminAppComponent implements AfterViewInit { private resolver; private menuService; private authService; menu?: import('@nebular/theme').NbMenuItem[]; fakeRouterContainer: ViewContainerRef; menuEnabled: boolean; enableAuthentication: boolean; fakeRouterInitialized$?: Subject; fictionalRouterOutlet: (container: ViewContainerRef) => void; constructor(resolver: ComponentFactoryResolver, menuService: NbMenuService, authService: NbAuthService); ngAfterViewInit(): void; createComponent(lazyComponent: LazyComponent): void; }