import type { Page } from '@playwright/test'; /** Neutral corner used to clear hover/highlight before OCR screenshots. */ export declare const UNHOVER_POINT: { readonly x: 1; readonly y: 1; }; /** Set by `init({ unhoverPoint })`. Pass `undefined` to clear. */ export declare function setUnhoverPoint(point: { x: number; y: number; } | undefined): void; /** * Move the mouse off interactive content so template matching is not skewed by * hover highlights. Enabled by default; pass `false` or * `configure({ unhoverBeforeCapture: false })` to skip. * * The destination defaults to `UNHOVER_POINT` and can be overridden via * `init({ unhoverPoint })` or `configure({ unhoverPoint })`. */ export declare function unhoverBeforeCapture(page: Page, override?: boolean): Promise; //# sourceMappingURL=unhover.d.ts.map