export { waitForNetworkIdle, waitForDOMStable }; /** * Wait for network activity to be idle for a specified duration. * Uses a polling approach to check for network requests. */ declare function waitForNetworkIdle(driver: any, idleTime: any, timeout: any): Promise; /** * Wait for the DOM to stop mutating for a specified duration. * Uses a MutationObserver to detect changes. */ declare function waitForDOMStable(driver: any, idleTime: any, timeout: any): Promise; //# sourceMappingURL=browserWait.d.ts.map