/** * MutationFuzzToolsNudge — mid-run reminder when the user asked for mutation * or fuzz tests but no matching exec (or run_tests/verify_fix) has run yet. * * Soft: max 1 fire. Pairs with evaluateInventedMutationFuzzCompletionGate. */ export declare const MUTATION_FUZZ_TOOLS_NUDGE_MAX_ATTEMPTS = 1; export interface MutationFuzzToolsNudgeRequest { userText: string; toolCallsByName: Record; messages?: Array<{ role?: string; content?: unknown; }>; totalToolCalls: number; attempts: number; } export type MutationFuzzToolsNudgeResult = { fire: false; } | { fire: true; correction: string; }; export declare function evaluateMutationFuzzToolsNudge(request: MutationFuzzToolsNudgeRequest): MutationFuzzToolsNudgeResult; //# sourceMappingURL=mutation-fuzz-tools-nudge.d.ts.map