import type { TranscriptEntry } from "../types/agent.js"; import type { NormalizedTranscript, TranscriptAnalysis } from "./types.js"; /** * Normalize a raw transcript into adapter-agnostic entries. * Purely deterministic — no LLM calls, no side effects. * Designed to be called once after adapter.run() returns and before scoring. */ export declare function normalizeTranscript(transcript: TranscriptEntry[]): NormalizedTranscript; /** * Convert a NormalizedTranscript to the serializable TranscriptAnalysis format. * Strips the `raw` back-reference and `index` from each entry so the result * can be safely JSON-serialized alongside the original transcript. */ export declare function toTranscriptAnalysis(normalized: NormalizedTranscript): TranscriptAnalysis; //# sourceMappingURL=normalize.d.ts.map