import { HttpClient } from '@angular/common/http'; import { Router } from '@angular/router'; import { InitializerService } from '../../initializer/initializer.service'; import { PrebootService } from '../../preboot-helper/services/preboot.service'; export interface IExcoData { Url: string; Guid: string; Id: string; ContainerId: string; } export declare class ExcoService { private router; private httpSvc; private readonly document; private initializer; private prebootSvc; lastGuid: string; lastPath: string; placement: any; constructor(router: Router, httpSvc: HttpClient, document: any, initializer: InitializerService, prebootSvc: PrebootService); start(): void; excoEx(placementId: any, target: any): Promise; setExco(exco: IExcoData, path: any): Promise; removeLastElement(): Promise; }