import { EntityBase } from '../common-utils/entity-base'; import { AxFilter } from '../enlighten-lib/filters/ax-filter'; import { FilterCategory } from '../enlighten-lib/filters/filter-category'; import { DashboardElement } from './dashboard-element/dashboard-element'; export declare class Dashboard extends EntityBase { name: string; description: string; appVersionId: number; dashboardElements: Array; filters: Array; categories: Array; isDirty: boolean; constructor(dashboard?: Dashboard); }