import type React from "react"; /** @deprecated The BrandedNavBar component is deprecated. Use the Navigation component instead. */ export declare const NAVBAR_HEIGHT = "56px"; type BaseNavBarProps = { menuData?: any; className?: string; breakpointUpper?: number | string; environment?: "training" | "development" | undefined; subtext?: string; brandingLinkHref?: string; logoSrc?: string; }; /** @deprecated The BrandedNavBar component is deprecated. Use the Navigation component instead. */ declare const NavBar: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit> & string & Omit<({ environment, breakpointUpper, className, ...props }: BaseNavBarProps) => import("react/jsx-runtime").JSX.Element, keyof React.Component>; export default NavBar;