import { JSON } from './json.type'; export interface DashboardState { focusedNavigation?: FocusedNavigation; activeNavigations: JSON; expandableNodes: JSON; } interface FocusedNavigation { id: string; name: string; } export {};