import type { ChatAttachment } from '../types/index.js'; /** * Download attachments to a temp directory and return local file paths. */ export declare function downloadAttachments(attachments: ChatAttachment[], taskId: string): Promise; /** * Clean up temp directory for a task. */ export declare function cleanupAttachments(taskId: string): void;