export declare interface NavMenuItem { to?: string | object; href?: string; label: string; external?: boolean; onClick?: () => void; disabled?: boolean; } export declare interface FwNavigationMenuProps { menuItems: NavMenuItem[]; additionalMenuItems?: NavMenuItem[]; /** @deprecated Use `actionLabels` instead. */ actionLabel?: string; actionMenuItems?: NavMenuItem[]; containerClass?: string; menuEnabled?: boolean; authenticated?: boolean; paddingClasses?: string; transparent?: boolean; logoSrc?: string; mobileLogoSrc?: string; reversedDesktopNavButton?: boolean; forcedLogoSrc?: string; }