/** * Cursor Highlight Injection * * Injects a cursor highlight (red dot + click ripple) into the daemon's * headless Chromium via page.addInitScript(). Only affects the daemon browser, * not the user's real browser. */ type Page = import('playwright').Page; /** * Install cursor highlight script via page.addInitScript(). * This runs before any page JavaScript, so it persists across navigations. */ export declare function installCursorHighlight(page: Page): Promise; export {}; //# sourceMappingURL=cursor.d.ts.map