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;
