jslib-nightly
Version:
SheerID JavaScript Library
16 lines (15 loc) • 617 B
TypeScript
/**
* Step Member Personal Info Component
* TODO - We need to import more from es6
*/
import React from 'react';
import { InjectedIntl } from 'react-intl';
import { VerificationService } from '../../lib/types/types';
interface StepMemberPersonalInfoComponentProps {
intl: InjectedIntl;
verificationService: VerificationService;
}
export declare const StepMemberPersonalInfoComponent: React.ComponentClass<Pick<StepMemberPersonalInfoComponentProps, "verificationService">, any> & {
WrappedComponent: React.ComponentType<StepMemberPersonalInfoComponentProps & ReactIntl.InjectedIntlProps>;
};
export {};