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 };
