import { default as React } from 'react';
import { InjectedIntl } from 'react-intl';
import { VerificationService, ErrorId } from '../../lib/types/types';

interface StepErrorProps {
    verificationService: VerificationService;
    errorId?: ErrorId;
    intl?: InjectedIntl;
}
export declare const StepErrorComponent: React.ComponentClass<Pick<StepErrorProps, "errorId" | "verificationService">, any> & {
    WrappedComponent: React.ComponentType<StepErrorProps & ReactIntl.InjectedIntlProps>;
};
export {};
