/// <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 {};
