@hhgtech/hhg-components
Version:
Hello Health Group common components
12 lines (11 loc) • 409 B
TypeScript
import React from 'react';
import { UserInfo } from "../../../interfaces/types";
export type Props = {
userInfo?: UserInfo;
isOpen: boolean;
closePopup: () => void;
dispatchLogout: () => void;
siteType: 'marryBaby' | 'helloSites';
};
declare const ProfilePopup: ({ isOpen, userInfo, closePopup, siteType, dispatchLogout, }: Props) => React.JSX.Element;
export { ProfilePopup };