/** * Cursor Agent session parser. * * Storage layout: * ~/.cursor/projects//agent-transcripts/.jsonl (flat) * ~/.cursor/projects//agent-transcripts//.jsonl (nested) * * JSONL line format: * {role: "user"|"assistant", message: {content: [{type:"text", text:"..."}]}} * * No per-message timestamps — file mtime is used for all messages. * No token info, no tool blocks (text ContentBlocks only). */ import type { NormalizedSession, SessionListEntry } from '../types.js'; export declare function parseCursorAgentSession(filePath: string): Promise; export declare function findCursorAgentSessions(): Promise; //# sourceMappingURL=cursor-agent.d.ts.map