import { type FileEntry } from '@earendil-works/pi-coding-agent'; import type { TranscriptCompactionRecord } from './transcript-format.js'; import { type TranscriptStoredRow } from './session-context-for-llm.js'; export declare const XOPC_CONTEXT_CUSTOM_TYPE = "xopc:transcript-row"; /** Convert SQLite transcript rows into pi-coding-agent JSONL file entries (header + tree). */ export declare function storedRowsToFileEntries(params: { sessionId: string; cwd: string; rows: TranscriptStoredRow[]; appendCompaction?: TranscriptCompactionRecord; }): FileEntry[];