/** * Copyright (c) 2025 Mihajlo Stojanovski * All rights reserved. */ import { Rule, RuleContext, Finding } from "../../../types"; /** * Element Intercept Rule * Covers: element intercepted, click intercepted by overlay */ export declare class ElementInterceptRule implements Rule { id: string; priority: number; kind: Finding["kind"]; match(ctx: RuleContext): boolean; build(ctx: RuleContext): Finding[]; } //# sourceMappingURL=element-intercept.d.ts.map