import { GuidValue, SpacingSettings } from "@omnia/fx-models"; export interface MegaMenuNode { depthLevel: number; rootNavigationNodeId: number; publishingAppId: GuidValue; publishingAppPath: string; excludeStartNode: boolean; } export interface MegaMenuLevelStyle { fontSize: number; fontWeight: number; enableUppercase: boolean; spacing: SpacingSettings; } export interface MegaMenuSettings { startNodes: Array; levelStyles: Array; enableDropdownMenu: boolean; staticLevels: number; maxHeight: number; maxWidth: number; minWidthOfColumn: number; backgroundColor: string; textColor: string; selectedBorderColor: string; }