UNPKG

@hhgtech/hhg-components

Version:
13 lines (12 loc) 588 B
import React from 'react'; import { SSOV2StoreType } from "../../ssoStateManager/store"; import { Props as PolicyContentProps } from "./policyContent"; type Props = { hidden: boolean; activeTab: SSOV2StoreType['flowData']['flow']; onTriggerGoogleLogin: () => void; onTriggerFacebookLogin: () => void; onClickEmail: () => void; } & PolicyContentProps; declare const FirstBFlow: ({ hidden, legalTextType, trackingAction, trackingCategory, onTriggerGoogleLogin, onTriggerFacebookLogin, onClickEmail, }: Props) => React.JSX.Element; export default FirstBFlow;