import { AppModel } from '../../models/app.model'; import { NotificationService } from '../../services/notification.service'; export declare class ConnectedAppsComponent { private notificationService; apps: { name: string; text: string; logo: string; url: string; isVisible: boolean; }[]; constructor(notificationService: NotificationService); connect(app: AppModel): void; }