import type { Page } from 'puppeteer';
/**
 * This injects a box into the page that moves with the mouse.
 * Useful for debugging.
 */
declare function installMouseHelper(page: Page): Promise<void>;
export default installMouseHelper;
