import * as React from 'react'; import { DesktopNavigationMenuProps, MobileNavigationMenuProps, ProfileMenu } from './types'; type GlobalNavigationBarProps = { isAuthenticated?: boolean; useMaxWidth?: boolean; maxWidth?: number; name?: string; logo?: { onClick?: () => void; to?: string; showBetaTag?: boolean; }; profile?: ProfileMenu; mobile?: MobileNavigationMenuProps; desktop?: DesktopNavigationMenuProps; testId?: string; profileComponent?: React.ReactNode; border?: boolean; }; /** * @param props * @constructor * @description This component is a global navigation header bar */ declare const GlobalNavigationBar: ({ name, isAuthenticated, logo, profile, mobile, desktop, testId, useMaxWidth, maxWidth, profileComponent, border }: GlobalNavigationBarProps) => React.ReactElement; export default GlobalNavigationBar;