/** * Copyright (c) 2025 Mihajlo Stojanovski * All rights reserved. */ import { Rule, RuleContext, Finding } from "../../../types"; /** * Assertion Mismatch Rule * Covers: expect().toBe*, toContain, toHaveText, toHaveValue, etc. */ export declare class AssertionMismatchRule implements Rule { id: string; priority: number; kind: Finding["kind"]; match(ctx: RuleContext): boolean; build(ctx: RuleContext): Finding[]; } //# sourceMappingURL=assertion-mismatch.d.ts.map