export type RetryConfiguration = { maxAttempts: number; initialDelay: number; maxDelay: number; }; export declare function withRetry(operation: () => Promise, config?: Partial): Promise;