import { default as React } from 'react';
import { InjectedIntl } from 'react-intl';
import { VerificationService } from '../../lib/types/types';

export interface StepEmailLoopComponentProps {
    intl: InjectedIntl;
    verificationService: VerificationService;
}
export declare const StepEmailLoop: ({ verificationService }: StepEmailLoopComponentProps) => React.JSX.Element;
export declare const StepEmailLoopComponent: React.ComponentClass<Pick<StepEmailLoopComponentProps, "verificationService">, any> & {
    WrappedComponent: React.ComponentType<StepEmailLoopComponentProps & ReactIntl.InjectedIntlProps>;
};
