import { DashboardOrientation, DashboardType, DataSourceType } from "./all.enum"; import { DashboardParameter } from "./dashboard-parameter"; import { DomainObject } from "./domain-object"; import { FileContent } from "./file-content"; export declare class Dashboard extends DomainObject { DashboardId?: string | undefined; EntityType?: string | undefined; Category?: string | undefined; DashboardType: DashboardType | undefined; DashboardOrientation: DashboardOrientation | undefined; FileContentId: string | undefined; FileContent: FileContent | undefined; DataSourceFileId: string | undefined; DataSourceFile: FileContent | undefined; DataSourceType: DataSourceType | undefined; DataSourceTypeInfo: string | undefined; Parameters?: DashboardParameter[] | undefined; } //# sourceMappingURL=dashboard.d.ts.map