/** * FormatToolsNudge — mid-run reminder when the user asked to format the code * but no format-shaped exec has run yet. * * Soft: max 1 fire. Pairs with evaluateInventedFormatCompletionGate. */ export declare const FORMAT_TOOLS_NUDGE_MAX_ATTEMPTS = 1; export interface FormatToolsNudgeRequest { userText: string; toolCallsByName: Record; messages?: Array<{ role?: string; content?: unknown; }>; totalToolCalls: number; attempts: number; } export type FormatToolsNudgeResult = { fire: false; } | { fire: true; correction: string; }; export declare function evaluateFormatToolsNudge(request: FormatToolsNudgeRequest): FormatToolsNudgeResult; //# sourceMappingURL=format-tools-nudge.d.ts.map