/** * Replay cursor overlay for visual feedback during interaction replay */ import type { Page } from 'puppeteer-core'; /** * Inject the replay cursor overlay into the page */ export declare function injectReplayCursor(page: Page): Promise; /** * Move the cursor to a position */ export declare function moveCursor(page: Page, x: number, y: number): Promise; /** * Show click effect (ripple and dot animation) * Moves cursor to position first, waits for animation, then shows click effect * @param isRightClick - true for right click (red), false for left click (green) */ export declare function showClickEffect(page: Page, x: number, y: number, isRightClick?: boolean): Promise; /** * Show key press indicator */ export declare function showKeyPress(page: Page, key: string): Promise; /** * Remove the replay cursor overlay */ export declare function removeReplayCursor(page: Page): Promise; //# sourceMappingURL=replay-cursor.d.ts.map