import { FC } from 'react'; interface HeaderProps { role?: string; onClickAvatar?: () => void; onClickNotification?: () => void; avatarContent?: JSX.Element; notifcationContent?: JSX.Element; } declare const Header: FC; export default Header;