/// interface NavBarProps { apiKey?: string; /** Url of the current logo of the current organization */ logo?: string; /** The color of the navbar */ color?: string; } declare function Navbar({ logo, color, apiKey }: NavBarProps): JSX.Element; export default Navbar;