UNPKG

jslib-nightly

Version:

SheerID JavaScript Library

16 lines (15 loc) 725 B
/// <reference types="react-intl" /> /** * TODO - preamble */ import React from 'react'; import { VerificationService } from '../../lib/types/types'; interface StepGeneralIdentityPersonalInfoComponentProps { intl: any; verificationService: VerificationService; } export declare const StepGeneralIdentityPersonalInfo: ({ intl, verificationService }: StepGeneralIdentityPersonalInfoComponentProps) => JSX.Element; export declare const StepGeneralIdentityPersonalInfoComponent: React.ComponentClass<Pick<StepGeneralIdentityPersonalInfoComponentProps, "verificationService">, any> & { WrappedComponent: React.ComponentType<StepGeneralIdentityPersonalInfoComponentProps & ReactIntl.InjectedIntlProps>; }; export {};