export interface Candidate { type: string; selector: string; score: number; } /** * Generate locator candidates using NextGenHeal(AI) by analyzing DOM snippet */ export declare function generateLocatorCandidatesWithAI(domSnippet: string, originalSelector: string): Promise;