/**
 * Check if the retry date is exceeded
 *
 * @param timestamp
 * @param maxRetryDuration max retry duration in seconds
 */
export declare const isRetryDateExceeded: (timestamp: Date, maxRetryDuration: number) => boolean;
