import React from "react"; import { type AcceptsMenuStateProps, type WithMenuStateProps } from "../utils"; /** @deprecated The BrandedNavBar component is deprecated. Use the Navigation component instead. */ export type RenderMenuButtonProps = { themeColorObject: any; onClick: () => void; ariaExpanded: true | null; isOpen: boolean; }; type SmallNavBarNoStateProps = { menuData?: any; subtext?: string; breakpointLower?: number | string; width?: number; themeColor?: "blue" | "white"; themeColorObject?: any; environment?: "development" | "training"; navBarHeight: string; logo?: React.ReactElement; showNulogyLogo?: boolean; renderMenuButton?: (props: RenderMenuButtonProps) => React.ReactElement; } & AcceptsMenuStateProps; declare const SmallNavBar: React.JSXElementConstructor<{ menuData?: any; subtext?: string; breakpointLower?: number | string; width?: number; themeColor?: "blue" | "white"; themeColorObject?: any; environment?: "development" | "training"; navBarHeight: string; logo?: React.ReactElement; showNulogyLogo?: boolean; renderMenuButton?: (props: RenderMenuButtonProps) => React.ReactElement; } & AcceptsMenuStateProps & WithMenuStateProps>; /** @deprecated The BrandedNavBar component is deprecated. Use the Navigation component instead. */ export type SmallNavBarProps = SmallNavBarNoStateProps & WithMenuStateProps; /** @deprecated The BrandedNavBar component is deprecated. Use the Navigation component instead. */ export default SmallNavBar;