/** * Output parser for Layer 1: Divergent Generators. * Extracts raw exploration text — minimal parsing since divergent output is free-form. */ import { OutputParserStrategy, RawLLMResponse, ParsedOutput } from "./output-parser-strategy"; export declare class DivergentOutputParser implements OutputParserStrategy { parse(response: RawLLMResponse): ParsedOutput; } //# sourceMappingURL=divergent-output-parser.d.ts.map