import type React from "react"; import type { TriggerFunctionProps } from "./TriggerFunctionProps"; /** @deprecated The BrandedNavBar component is deprecated. Use the Navigation component instead. */ export type MenuType = "primary" | "secondary"; /** @deprecated The BrandedNavBar component is deprecated. Use the Navigation component instead. */ export type MenuTriggerProps = { name?: string; "aria-label"?: string; color?: string; hoverColor?: string; hoverBackground?: string; menuData?: any[]; trigger?: (props: TriggerFunctionProps) => React.ReactNode; layer: number; menuType: MenuType; }; declare const MenuTrigger: ({ menuData, name, color, hoverColor, hoverBackground, "aria-label": ariaLabel, trigger, layer, menuType, ...props }: MenuTriggerProps) => import("react/jsx-runtime").JSX.Element; /** @deprecated The BrandedNavBar component is deprecated. Use the Navigation component instead. */ export default MenuTrigger;