import type { AgencyRunner } from "./grading/agencyRunner.js"; import type { MutationProposal } from "./types.js"; export type ReflectionSections = { targets: string; feedback: string; history: string; }; /** Run the GEPA reflective proposer and validate its structured proposal. */ export declare function proposeReflective(runAgency: AgencyRunner, sections: ReflectionSections): Promise;