import type { StopReason } from '@wrongstack/core/types'; export declare function normalizeAnthropic(stop: string | null | undefined): StopReason; export declare function normalizeOpenAI(stop: string | null | undefined): StopReason; /** * Normalize Gemini-specific finish reasons. SAFETY, RECITATION, and * "hallucination" are safety blocks that should not silently become end_turn. */ export declare function normalizeGemini(stop: string | null | undefined): StopReason; //# sourceMappingURL=stop-reason.d.ts.map