import ProxyService from '../Proxy'; import { EmptyResponse, ForceParams, Messages } from '../types'; export default class MessagesService { proxy: ProxyService; readonly route: string; constructor(proxy: ProxyService); list(params?: Messages.ListParams): Promise; create(params?: Messages.CreateParams): Promise; update(id: string, params?: Messages.UpdateParams): Promise; delete(id: string, params?: ForceParams): Promise; createSystem(params: Messages.CreateSystemParams): Promise; unreadCount(params?: Messages.UnreadCountParams): Promise; listReactions(id?: string): Promise; addReaction(id: string, reaction: string): Promise; removeReaction(id: string, reaction: string): Promise; updateReaction(id: string, add?: string, remove?: string): Promise; private putReaction; } //# sourceMappingURL=Messages.d.ts.map