@sheerid/jslib-nightly
Version:
SheerID JavaScript Library
13 lines (11 loc) • 541 B
TypeScript
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 {};