import { TFixErrorCodes } from '../shared/types/core/sdk-events';
declare class RetryLimitHandler {
    private errorCode;
    private counter;
    private RetryLimit;
    constructor(errorCode: TFixErrorCodes, partialFlow: 'liveness' | 'document capture');
    handleRetry(callback?: () => void): void;
}
export default RetryLimitHandler;
