import type { PromptContext } from '../types'; /** * Renders the loop control / stop-and-yield section. * * Three modes: * 1. stop-hook + hookDriven=true → yield to stop-hook (Claude Code, Codex with hooks) * 2. loop-driver → return control to loop-driver (PI) * 3. stop-hook + hookDriven=false → drive loop in-turn (Codex without hooks) */ export declare function renderLoopControl(ctx: PromptContext): string; //# sourceMappingURL=loopControl.d.ts.map