import * as i0 from '@angular/core'; import { AfterViewInit, OnDestroy } from '@angular/core'; import NoVncClient, { NoVncCredentials } from '@novnc/novnc/lib/rfb'; import { RemoteAccessService } from '@c8y/ngx-components/remote-access/data'; import { ActivatedRoute } from '@angular/router'; import { BsModalService } from 'ngx-bootstrap/modal'; import { BehaviorSubject, Subscription } from 'rxjs'; declare class VncViewerComponent implements AfterViewInit, OnDestroy { private remoteAccess; private activatedRoute; private modalService; titlePrefix: "VNC viewer"; title: string; container: HTMLElement | null; noVNCClient: NoVncClient; powerCapability: boolean; status: 'connecting' | 'connected' | 'disconnected'; container$: BehaviorSubject; connectionSubscription: Subscription; constructor(remoteAccess: RemoteAccessService, activatedRoute: ActivatedRoute, modalService: BsModalService); ngOnDestroy(): void; ngAfterViewInit(): void; disconnectFromOldSession(): void; connect(container: HTMLElement, deviceId: string, configId: string, noVNC: typeof NoVncClient): void; downloadScreenshot(): void; changeStatus(status: 'connecting' | 'connected' | 'disconnected'): void; toggleFullscreen(): void; sendCtrlAltDel(): void; sendShutDown(): void; sendReset(): void; sendReboot(): void; getNoVNCClient(): Promise; protected requestCredentials(types: Array): Promise; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } export { VncViewerComponent }; //# sourceMappingURL=index.d.ts.map