/** * Copyright (c) 2025 Mihajlo Stojanovski * All rights reserved. */ import { Rule, RuleContext, Finding } from "../../../types"; /** * Network Error Rule * Covers: ERR_*, DNS, connection refused, SSL, HTTP 4xx/5xx */ export declare class NetworkErrorRule implements Rule { id: string; priority: number; kind: Finding["kind"]; match(ctx: RuleContext): boolean; build(ctx: RuleContext): Finding[]; } //# sourceMappingURL=network-error.d.ts.map