import type { FileAttachment } from '../hooks/useFileUpload'; import type { ChatDraftAttachment } from '../stores/chatDraftStore'; import type { Message } from '../types/api'; export declare function toChatDraftAttachment(attachment: FileAttachment): ChatDraftAttachment | undefined; export declare function fromChatDraftAttachment(attachment: ChatDraftAttachment): FileAttachment; export declare function getMessageChatDraftAttachments(message: Message | undefined): ChatDraftAttachment[]; //# sourceMappingURL=chatAttachments.d.ts.map