import * as C from '../api/conversationAPITypes'; import { Match } from '../request/requestBuidler'; export declare function getConversations(config: Match): Promise; export declare function createConversation(post: Match): Promise<{}>; export declare function deleteConversation(conversationId: Match["id"], config: Match): Promise<{ id: number; subject: string; workflow_state: "read" | "unread" | "archived"; last_message?: string | undefined; last_message_at?: string | undefined; message_count: number; subscribed: boolean; private: boolean; starred: boolean; properties: ("last_author" | "attachments" | "media_objects")[]; }>; export declare function batchUpdateConversation(conversationIds: string[], event: Match["event"]): Promise; export declare function unreadConversationsCount(): Promise<{ unread_count: string; }>;