/** * Retry Logic for Jira API Calls * Implements exponential backoff for transient failures */ export interface RetryOptions { maxRetries?: number; initialDelay?: number; maxDelay?: number; backoffMultiplier?: number; retryableStatusCodes?: number[]; } /** * Retry a function with exponential backoff */ export declare function retryWithBackoff(fn: () => Promise, options?: RetryOptions): Promise; /** * Wrapper for fetch with retry logic */ export declare function fetchWithRetry(url: string, options?: RequestInit, retryOptions?: RetryOptions): Promise; //# sourceMappingURL=retry.d.ts.map