import React__default from 'react'; type NavigationMenuItem = { label: string; action: () => void; trigger?: any; }; type NavbarType = { logo?: any; buttons?: any; menuItems?: NavigationMenuItem[]; handleLogoClick?: () => void; backgroundColor?: string; }; declare const Navbar: React__default.FC; export { Navbar };