import type React from "react"; /** @deprecated The BrandedNavBar component is deprecated. Use the Navigation component instead. */ export type BrandLogoContainerProps = { logoSrc?: string; brandingLinkHref?: string; brandingLinkTo?: string; brandingLinkComponent?: React.ElementType; subtext?: string; }; declare const BrandLogoContainer: ({ logoSrc, brandingLinkHref, brandingLinkTo, brandingLinkComponent, subtext, }: BrandLogoContainerProps) => import("react/jsx-runtime").JSX.Element; /** @deprecated The BrandedNavBar component is deprecated. Use the Navigation component instead. */ export default BrandLogoContainer;