import { OnInit, EventEmitter } from '@angular/core'; import { Dashboard } from '../../models/dashboard.model'; import { DashboardPreferences } from '../../models/dashboard-preferences.model'; import { DashboardModeState } from '../../models/dashboard-mode.mode'; export declare class DashboardMenuListComponent implements OnInit { dashboards: Dashboard[]; dashboardPreferences: DashboardPreferences; currentDashboardId: string; dashboardMode: DashboardModeState; userIsAdmin: boolean; searchTerm: string; setCurrentDashboard: EventEmitter; addDashboard: EventEmitter; showHelp: EventEmitter; constructor(); ngOnInit(): void; onSetCurrentDashboard(id: string): void; onSearchDashboard(e: any): void; onAddDashboard(e: any): void; onShowHelpSection(e: any): void; }