import type { RuleResult } from "../../types.js"; /** * Evaluate a synthetic-invalid-URL probe response. A correct site returns * 404/410 for a URL that cannot exist; a 200 is the soft-404 signal — no body * pattern required (unlike soft404Rule). Body pattern/emptiness raises confidence. */ export declare function evaluateProbe(probedUrl: string, status: number, body: string): RuleResult | null; //# sourceMappingURL=soft-404-probe.d.ts.map