import { Page } from "@playwright/test"; /** * Non-NextGenHeal(AI) SelfHealingPage * Wraps Playwright Page and routes all locator actions through HeuristicHeal(Non_AI) SelfHealingHelper */ export declare class SelfHealingPage { private page; private helper; constructor(page: Page, fileName?: string); /** * Returns a proxy Locator wrapper. * Any Playwright Locator action (click, fill, type, press, hover, etc.) * will automatically run through Non-NextGenHeal(AI) self-healing logic. */ locator(selector: string): any; }