import type { Page } from 'puppeteer'; /** * This injects a box into the page that moves with the mouse. * Useful for debugging. * * @returns `removeMouseHelper` function that removes the mouseHelper box and listeners. */ export declare function installMouseHelper(page: Page): Promise<{ removeMouseHelper: () => Promise; }>;