import type { FinalizerInput, FinalizerResult, IFinalizer } from '@mcp-abap-adt/llm-agent'; /** * Deterministic markdown join over the execution trace. No LLM. Useful * when the plan is already shaped per-section and the answer is just * the concatenation of the section outputs. */ export declare class TemplateFinalizer implements IFinalizer { readonly name = "template"; finalize(input: FinalizerInput): Promise; } //# sourceMappingURL=template-finalizer.d.ts.map