/// import { UpdateCredentials } from "../../../store/slices/authSlice/auth.types"; import { UseMenuActionsProps } from "./navbar/Navbar.types"; export declare type HeaderProps = { menu: { [key: string]: { title: string; path: string; icon: JSX.Element; }[]; }; profile?: Boolean; updateCredentials: UpdateCredentials; logo: string; } & UseMenuActionsProps;