import type { AgentRuntimeEffects } from './contract.js'; export declare function createClaudeJsonlActivityMapper(effects: AgentRuntimeEffects, runtimeKind: string, usageContext?: { accountId?: string; model?: string; }): { accept(chunk: string): Promise; flush(): Promise; recordUnavailable(): Promise; usageRecordCount(): number; }; export declare function parseClaudeRuntimeOutput(stdout: string): { text?: undefined; } | { text: string; }; //# sourceMappingURL=claude-events.d.ts.map