import { ContextService } from '../context.service'; import { ComponentFactoryResolver, ViewContainerRef, OnDestroy } from '@angular/core'; import { CustomComponentService } from '../custom-component.service'; import { ActivatedRoute } from '@angular/router'; import { PaneRouteData } from '../route-data'; import { UrlManagerService } from '../url-manager.service'; import { PaneComponent } from '../pane/pane'; import { ConfigService } from '../config.service'; export declare class DynamicObjectComponent extends PaneComponent implements OnDestroy { private readonly componentFactoryResolver; private readonly customComponentService; private readonly configService; parent: ViewContainerRef; constructor(activatedRoute: ActivatedRoute, urlManager: UrlManagerService, context: ContextService, componentFactoryResolver: ComponentFactoryResolver, customComponentService: CustomComponentService, configService: ConfigService); private lastOid; protected setup(routeData: PaneRouteData): void; ngOnDestroy(): void; }