/** * Copyright (c) 2025 Mihajlo Stojanovski * All rights reserved. */ import { Rule, RuleContext, Finding } from "../../../types"; /** * Unknown Error Fallback Rule * Always matches as fallback when no other rule applies. */ export declare class UnknownErrorRule implements Rule { id: string; priority: number; kind: Finding["kind"]; match(_ctx: RuleContext): boolean; build(ctx: RuleContext): Finding[]; } //# sourceMappingURL=unknown-error.d.ts.map