import { ChatId } from '../../../types/tags.js'; interface Message { remoteJid: string; fromMe: boolean; id: string; } interface MarkAsUnreadRequest { lastMessage: Message[]; chat: ChatId; } interface MarkAsUnreadResponse { message: string; unread: "success" | "error"; } export type { MarkAsUnreadRequest, MarkAsUnreadResponse };