export interface NavItem {
    disabled?: boolean;
    iconName?: string;
    route?: string;
    name?: string;
    url?: string;
    title?: string;
    fullTitle?: string;
    tooltip?: string;
    level?: number;
    parent?: NavItem;
    nodes?: NavItem[];
    children?: NavItem[];
}
