/** * Parser for Claude Code JSONL transcripts. * Each line is a JSON object with {role, content, ...} */ import type { ParseResult } from './types.js'; export declare function parseClaudeCode(input: string): ParseResult; //# sourceMappingURL=claude-code-parser.d.ts.map