import { OnInit, OnDestroy } from '@angular/core'; import { AppModel } from '../../models/app.model'; import { NotificationService } from '../../services/notification.service'; export declare class ConnectModalComponent implements OnDestroy, OnInit { private notificationService; type: any; isVisible: string; private subscription; selectedApp: AppModel; constructor(notificationService: NotificationService); ngOnInit(): void; ngOnDestroy(): void; listener(): void; connectAccount(): void; }