UNPKG

jslib-nightly

Version:

SheerID JavaScript Library

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