/** * Click an element by CSS selector. * * Replaces the old `click_button` subcommand (T14) — `click_button` defaulted * the selector to `'button'` and polluted `window[mcp_click_*]` with rate-limit * markers plus a `pointerEvents` hack. This command keeps a lightweight * `CLICK_BY_SELECTOR_RATE_LIMIT_MS` debounce (`window[mcp_selector_click_*]`) * but drops the worst of those workarounds; callers needing the old behavior * should pass an explicit selector like `'button'`. * * ⚠️ Rate-limit: same-selector clicks fired within * `CLICK_BY_SELECTOR_RATE_LIMIT_MS` of the previous one are rejected with * `"Click prevented - too soon after previous click"`. Serialize click flows * (await each call) to avoid this — parallel rapid clicks on the same target * are intentionally suppressed to prevent double-submits in React handlers. */ export declare const clickBySelector: import("../types").CommandModule;