interface TopNavItemChild { displayName?: string; link?: string; name?: string; router?: boolean; visible?: boolean; click?: Function; } export interface TopNavItem extends TopNavItemChild { active?: boolean; avatarImage?: string; avatarText?: string; children?: TopNavItemChild[]; control?: boolean; dropdownActive?: boolean; dropdownArrow?: boolean; dropdownPositionX?: 'left' | 'right' | 'center'; dropdownType?: 'click' | 'hover'; icon?: string; profileImage?: string; popoverToggle?: (event: boolean) => void; } export {};