import { DatabaseManager } from '../db/database.js'; /** * Parse progress JSON from agent response and update the run * Looks for JSON objects in the format: * { * "totalTasks": , * "completedTasks": , * "tasks": [...] * } * * Also supports code blocks with JSON: * ```json * { ... } * ``` */ export declare function parseAndUpdateProgress(database: DatabaseManager, runId: string, content: string): void; //# sourceMappingURL=progressParser.d.ts.map