import type { FC } from 'react'; import { UseMenuActionsProps } from "./Navbar.types"; declare type HeaderProps = { menu: { [key: string]: { title: string; path: string; icon: JSX.Element; }[]; }; } & UseMenuActionsProps; /** * @componet * @name Logout * @version 1.0.0 * @author Juan David Avila Caycedo * @description Custom component that renders the buttons of the menu * @param {object} menu - object with the information about the view that the button redirects (title, path, icon) * @returns */ declare const Navbar: FC; export { Navbar };