import { TaskStatus } from '../types.js'; export declare const TASK_ALL_URI = "task:///all"; export declare const SYSTEM_STATUS_URI = "system:///status"; export declare function filterOutputForResource(output: string[]): string[]; export declare function parseOutputToExecutionLog(output: string[]): { turn: number; tools: Array<{ name: string; duration?: string; }>; }[]; export declare function extractMessageStats(output: string[]): { round: number; lastUserMessage?: string; totalMessages: number; }; export declare function canSendMessage(task: { status: TaskStatus; sessionId?: string; }): boolean; //# sourceMappingURL=resource-helpers.d.ts.map