import { HMSPeerID } from './peer'; export declare type HMSMessageID = string; export declare enum HMSMessageType { CHAT = "chat" } export interface HMSMessage { id: HMSMessageID; sender: HMSPeerID; senderName?: string; time: Date; read: boolean; type: HMSMessageType; message: string; }