import type { PDSIconType } from '../../../common'; export type { DynamicDesktopTemplateType, TemplateNamesType, TemplatesDataType } from './templates/types'; export type ParsedNode = { menuItemType: menuItemTypes; type: 'GENERAL_NODE'; name: string; iconSrc?: string; iconName?: PDSIconType; visibilityLevel: string; pAppCode?: string; slug?: string; conversionLinkSrc?: string; parsedNodes: Array; }; export type menuItemTypes = 'NAV_P_APP' | 'WEB_LINK' | 'INTERNAL_LINK' | 'DISPLAY_ONLY' | 'NAV_PAGE';