import type React from "react"; import type { AppSwitcherConfig } from "./components/AppSwitcher/NulogyAppSwitcher"; import type { MenuItems, UserMenu } from "./types"; export interface BaseNavigationProps { appSwitcher?: AppSwitcherConfig; primaryLogo?: React.ReactNode; secondaryLogo?: React.ReactNode; primaryNavigation?: MenuItems; secondaryNavigation?: MenuItems; userMenu?: UserMenu; } export interface NavigationProps extends BaseNavigationProps { breakpoint?: string; } declare const Navigation: ({ breakpoint, ...props }: NavigationProps) => import("react/jsx-runtime").JSX.Element; export default Navigation;