import type { AttachmentMeta } from '../domain/ui-service/types.js'; interface MoveDraftAttachmentsOptions { draftUploadId: string | null; sessionId: string; attachments: AttachmentMeta[]; } export declare function moveDraftAttachments(opts: MoveDraftAttachmentsOptions): Promise; export {};