import { ReadinessCheck } from '../@types';
/**
 * Retry a readiness check for the specified amount before failing/succeeding.
 */
export declare const withRetry: (input: ReadinessCheck, opts: {
    retryCount: number;
}) => ReadinessCheck;
