import type { RouteName } from '../router/name'; export interface LayoutRoute { label: string; name: RouteName; showIcon?: boolean; icon?: string; iconColor?: string; children?: LayoutRoute[]; disable?: boolean; expandChild?: boolean; showLocationOptions?: boolean; } export interface Breadcrumbs { label: string; route: string; disabled?: boolean; }