import { OnInit } from '@angular/core'; import { User } from '@iapps/ngx-dhis2-http-client'; import { Store } from '@ngrx/store'; import { Observable } from 'rxjs'; import { Dashboard } from '../../models/dashboard.model'; import { DashboardAppState } from '../../store/reducers'; export declare class DashboardComponent implements OnInit { private store; currentUser: User; dashboards$: Observable; currentDashboard$: Observable; constructor(store: Store); ngOnInit(): void; onSetCurrentDashboard(dashboardId: string): void; }