/** * Page Info Retry Utility * Handles adaptive page loading with exponential backoff */ import { PageInfo } from './page-info-utils'; export declare class PageInfoRetry { /** * Get page info with retry logic - waits for interactive elements to appear * Uses exponential backoff to handle slow-loading React/Vue/Angular apps */ static getWithRetry(page: any, maxAttempts?: number): Promise; private static calculateTotalWaitTime; } //# sourceMappingURL=page-info-retry.d.ts.map