export interface DashboardEntity { name: string; visible: boolean; icon: string; } export interface HomeDashboardSchema { title: string; subtitle: string; items: { entities: DashboardEntity[]; }; } //# sourceMappingURL=dashboard.d.ts.map