export interface RetryOptions { maxRetries?: number; baseDelayMs?: number; } export declare function retryWithBackoff(fn: () => Promise, options?: RetryOptions): Promise;