/** * URL-hostility axis. * * For each URL-shaped arg (heuristic: name contains `url`, `origin`, * `endpoint`, etc.), send URL-shaped payloads designed to confuse * URL parsers and canonicalisers. * * Per docs/SPEC.md ยง"Fuzzing strategy". */ import type { Prng } from "../prng.js"; import type { ToolFacts } from "../schema.js"; /** Generate URL-hostility inputs for one tool. */ export declare function generateUrlHostility(facts: ToolFacts, _prng: Prng): Generator<{ args: Record; rationale: string; }>; //# sourceMappingURL=url-hostility.d.ts.map