import React from "react"; import type { MenuType } from "./MenuTrigger"; /** @deprecated The BrandedNavBar component is deprecated. Use the Navigation component instead. */ export type DesktopMenuProps = { menuData: any[]; menuType: MenuType; themeColorObject: any; }; /** @deprecated The BrandedNavBar component is deprecated. Use the Navigation component instead. */ declare const DesktopMenu: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit, "ref"> & { ref?: React.Ref; }, never>> & string & Omit>, keyof React.Component>; export default DesktopMenu;