/** * Click by visible text / aria-label / title. * Element scoring lives in `utils/electron-commands.ts:generateClickByTextCommand`. * * Caveat: short strings can false-positive on multiple candidates — see * GitHub issue #3. Phase 4 (T25-T28) will offer CDP-level alternatives. * * ⚠️ Rate-limit: same-element clicks fired within * `CLICK_BY_TEXT_RATE_LIMIT_MS` of the previous one return an error string * containing `"Element click prevented - too soon after previous click"` * (the underlying `throw` is caught and surfaced as a returned failure * message). The window is deliberately longer than the selector variant * because text scoring + `scrollIntoView({ behavior: 'smooth' })` can * legitimately take ~1s. Serialize click flows (await each call) to avoid this. */ export declare const clickByText: import("../types").CommandModule;