/** * Executes a network operation with retry logic for transient failures. * * @param operation - The async operation to execute. * @param maxRetries - Maximum number of retry attempts. * @param baseDelayMs - Base delay between retries in milliseconds. * @returns Promise that resolves with the operation result. */ export declare function executeWithRetry(operation: () => Promise, maxRetries?: number, baseDelayMs?: number): Promise; //# sourceMappingURL=network-utils.d.mts.map