@hhgtech/hhg-components
Version:
Hello Health Group common components
10 lines (9 loc) • 364 B
TypeScript
import React from 'react';
export type Props = {
openLogoutPopup: boolean;
onCloseHandler: () => void;
onLogoutHandler: () => void;
siteType: 'helloSites' | 'marryBaby';
};
declare const NavigationLogoutPopup: ({ openLogoutPopup, onCloseHandler, onLogoutHandler, siteType, }: Props) => React.JSX.Element;
export { NavigationLogoutPopup };