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;
