/** * DeepSeek Harness normalizer — ADR 0062 slice 3. * * The DeepSeek Harness exposes a live `SessionEvent` feed rather than a spawned * `stream-json` transport: its frames are already event-shaped (`kind`-tagged), * so the dialect is a thin renaming onto the canonical union. Restore is the * harness's in-process `seed`/`restore` pair, so the resume shim is the SDK * `restore(id)` call. Streaming + resume-by-id → `durable-resume`. */ import type { HarnessNormalizer } from "./types.ts"; export declare const deepseekNormalizer: HarnessNormalizer;