@sheerid/jslib-nightly
Version:
SheerID JavaScript Library
13 lines (11 loc) • 617 B
TypeScript
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>;
};