import { Dashboard } from '../../models/dashboard.model'; import { EntityState, EntityAdapter } from '@ngrx/entity'; import { DashboardItem } from '../../models/dashboard-item.model'; import { BaseState } from './base.state'; export interface DashboardState extends EntityState, BaseState { currentDashboard: string; currentDashboardItem: DashboardItem; currentVisualization: string; dashboardMode: string; currentChartType: string; } export declare const dashboardAdapter: EntityAdapter; export declare const initialDashboardState: DashboardState;