import { default as React } from 'react';
import { MaxReviewTime, PendingResponse, VerificationService } from '../../lib/types/types';

interface ReviewPendingProps {
    intl: any;
    logo: JSX.Element;
    verificationService: VerificationService;
    maxReviewTime?: MaxReviewTime;
}
export declare const timesChanged: (previousResponse: PendingResponse, currentResponse: PendingResponse) => boolean;
export declare const ReviewPendingComponent: ({ intl, logo, verificationService }: ReviewPendingProps) => React.JSX.Element;
export {};
