/** * Adapter for Claude Code sessions. * * Storage: ~/.claude/projects//.jsonl * Each line is a JSON record with type, message, cwd, timestamp, etc. */ import type { SessionAdapter, CanonicalSession } from "./types.js"; export declare class ClaudeAdapter implements SessionAdapter { readonly id = "claude"; readonly name = "Claude Code"; isAvailable(): boolean; getSessionsDir(): string; discoverSessions(): string[]; parseSession(filePath: string): CanonicalSession | null; } //# sourceMappingURL=claude.d.ts.map