import type { TStage } from "../../lib/pipelines/types.js"; import type { TReasoningEffort } from "../../lib/llm/types.js"; /** * Create a review turn stage. * * The review stage runs one turn of Socratic dialogue: the model examines * the user's argument, asks probing questions, and provides feedback to * strengthen it. Output is validated against the parsing response schema. */ export declare function createReviewTurn(model: string, reasoningEffort?: TReasoningEffort): TStage; //# sourceMappingURL=review.d.ts.map