import React from "react"; type MenuTriggerButtonProps = React.ComponentPropsWithRef<"button"> & { name?: React.ReactNode; color?: string; hoverColor?: string; hoverBackground?: string; }; declare const MenuTriggerButton: React.ForwardRefExoticComponent & React.RefAttributes>; /** @deprecated The BrandedNavBar component is deprecated. Use the Navigation component instead. */ export default MenuTriggerButton;