UNPKG

@hhgtech/hhg-components

Version:
11 lines (10 loc) 423 B
import React from 'react'; import { UserInfo } from "../../../../interfaces/types"; import { UserProfileTheme } from "../types"; export type NavHeaderProps = { userInfo?: UserInfo; userDisplayName?: string; onClickMyProfileButton?: () => void; themeName?: UserProfileTheme; }; export declare function NavHeader({ userInfo, onClickMyProfileButton, themeName, }: NavHeaderProps): React.JSX.Element;