import type { RetryOptions } from './types.js'; import { sleep } from '../sleep/mod.js'; /** * Calculate delay for next retry attempt based on strategy */ declare const calculateDelay: (attempt: number, options: Pick) => number; export { calculateDelay, sleep }; //# sourceMappingURL=delay.d.ts.map