import React from 'react'; interface Props { /** application name */ title: string; /** event to fire when clicking the logo area */ onClick?: () => void; /** right nav menu element */ rightMenu?: string | React.ReactElement; } declare const Navbar: ({ title, onClick, rightMenu }: Props) => JSX.Element; export default Navbar;