/** * Output parser strategy for Layer 3: The Synthesizer Architect. * Extracts the draft and computes structural metadata. */ import { OutputParserStrategy, RawLLMResponse, ParsedOutput } from "./output-parser-strategy"; export declare class SynthesizerOutputParser implements OutputParserStrategy { parse(response: RawLLMResponse): ParsedOutput; } //# sourceMappingURL=synthesizer-output-parser.d.ts.map