/** * Internal class for retries */ export declare class RetryHelper { private maxAttempts; private minSeconds; private maxSeconds; constructor(maxAttempts: number, minSeconds: number, maxSeconds: number); execute(action: () => Promise, isRetryable?: (e: Error) => boolean): Promise; private getSleepAmount; private sleep; }