import { IBackoff, IBackoffFactory } from './Backoff'; export declare class IterableBackoff implements IBackoffFactory { private readonly durations; /** * Backoff that returns a number from an iterable. */ constructor(durations: ReadonlyArray); /** * @inheritdoc */ next(_context: unknown): IBackoff; }