import { ReactElement } from 'react'; export type SubMenuItemsType = { label: string; title?: string; link: string; action: string; icon: string | ReactElement; tags?: string[]; description?: string; hide?: boolean; }; export type SubMenuType = { title?: string; items?: Array; hide?: boolean; }; export type NavItem = { label: string; title?: string; icon: string | ReactElement; link?: string; externalLink?: string; action?: string; tags?: string[]; description?: string; className?: string; subMenu?: Array; hide?: boolean; }; export type NavWithTags = NavItem & { subMenu?: Array; }; export type NavType = { brand?: string | ReactElement; leftLinks: Array; leftBottomLinks: Array; };