import { type StyledProps } from "../StyledProps"; import type { DefaultNDSThemeType } from "../theme"; /** @deprecated The BrandedNavBar component is deprecated. Use the Navigation component instead. */ export type NavBarBackgroundProps = { theme?: DefaultNDSThemeType; } & StyledProps; declare const NavBarBackground: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit, HTMLDivElement>, keyof import("../Box").BoxProps> & import("../Box").BoxProps, keyof import("../Flex/Flex").FlexProps> & import("../Flex/Flex").FlexProps, never>> & string; /** @deprecated The BrandedNavBar component is deprecated. Use the Navigation component instead. */ export default NavBarBackground;