/** * Command Code session parser. * * Storage layout: * ~/.commandcode/projects//.jsonl * Optional sidecar: .meta.json (contains title) * * JSONL line format (same content block format as Claude Code): * {type?: string, role: "user"|"assistant", timestamp: string, * gitBranch?: string, content: [{type: "text"|"thinking"|"tool_use"|"tool_result", ...}]} * * Reuses explodeAssistantBlocks / explodeUserBlocks from explosion.ts. */ import type { NormalizedSession, SessionListEntry } from '../types.js'; export declare function parseCommandCodeSession(filePath: string): Promise; export declare function findCommandCodeSessions(): Promise; //# sourceMappingURL=commandcode.d.ts.map