import { type InputGrades } from "./grading/scorecard.js"; export type ReflectionRenderOptions = { maxChars?: number; }; /** One graded input rendered as a GEPA feedback block: input, output, errors, a compact * tool-call trace, and graders' natural-language feedback. Bounded. */ export declare function renderInputFeedback(entry: InputGrades, opts?: ReflectionRenderOptions): string; /** Render an already-sorted (weakest-first) set of focus inputs as one feedback section. */ export declare function renderReflectionFeedback(focus: InputGrades[], opts?: ReflectionRenderOptions): string;