UNPKG

obss-air-command-component-library

Version:
11 lines (10 loc) 264 B
import React from 'react'; interface NavbarProps { welcomeText?: string; userRole?: string; onThemeToggle?: () => void; onLanguageChange?: () => void; onLogout?: () => void; } declare const Navbar: React.FC<NavbarProps>; export default Navbar;