/** * Qwen Code normalizer — ADR 0062 slice 3. * * Driven with `qwen -p -o stream-json`. Qwen Code descends from the Gemini CLI, * so its streaming dialect speaks that lineage: `content` frames tagged with a * `role`, `thought` frames for reasoning, and `tool_call_request` / * `tool_call_response` pairs. Restore is `-r ` (`-c` continues the latest). * Streaming + resume-by-id → `durable-resume`. */ import type { HarnessNormalizer } from "./types.ts"; export declare const qwenNormalizer: HarnessNormalizer;