/** * SnapshotToolsNudge — mid-run reminder when the user asked to update test * snapshots but no snapshot-update-shaped exec has run yet. * * Soft: max 1 fire. Pairs with evaluateInventedSnapshotCompletionGate. */ export declare const SNAPSHOT_TOOLS_NUDGE_MAX_ATTEMPTS = 1; export interface SnapshotToolsNudgeRequest { userText: string; toolCallsByName: Record; messages?: Array<{ role?: string; content?: unknown; }>; totalToolCalls: number; attempts: number; } export type SnapshotToolsNudgeResult = { fire: false; } | { fire: true; correction: string; }; export declare function evaluateSnapshotToolsNudge(request: SnapshotToolsNudgeRequest): SnapshotToolsNudgeResult; //# sourceMappingURL=snapshot-tools-nudge.d.ts.map