import { type TranscriptStoredRow } from './session-context-for-llm.js'; /** Raw transcript range for one UI-visible user turn. */ export declare function computeTranscriptUserRoundDeleteRange(rows: readonly TranscriptStoredRow[], userRoundIndex: number): { startIndex: number; count: number; } | null;