jslib-nightly
Version:
SheerID JavaScript Library
16 lines (15 loc) • 719 B
TypeScript
/// <reference types="react-intl" />
/**
* TODO - preamble
*/
import React from 'react';
import { VerificationService } from '../../lib/types/types';
interface StepFirstResponderPersonalInfoComponentProps {
verificationService: VerificationService;
intl: any;
}
export declare const StepFirstResponderPersonalInfo: ({ intl, verificationService }: StepFirstResponderPersonalInfoComponentProps) => JSX.Element;
export declare const StepFirstResponderPersonalInfoComponent: React.ComponentClass<Pick<StepFirstResponderPersonalInfoComponentProps, "verificationService">, any> & {
WrappedComponent: React.ComponentType<StepFirstResponderPersonalInfoComponentProps & ReactIntl.InjectedIntlProps>;
};
export {};