import { Page } from "@playwright/test"; export declare class SelfHealingHelper { private page; private store; constructor(page: Page, storeFile?: string, storeDir?: string); /** * Main entry point for finding elements with self-healing */ find(selector: string): Promise; /** * Refresh candidates from DOM using the same selector */ private refreshRecord; /** * Refresh candidates using stored metadata */ private refreshRecordWithStoredMeta; /** * Capture element metadata for store */ private getElementMeta; }