import type { HMSMessageRecipient } from './HMSMessageRecipient'; import type { HMSPeer } from './HMSPeer'; export declare class HMSMessage { message: string; messageId: string; type: string; time: Date; sender?: HMSPeer; recipient: HMSMessageRecipient; constructor(params: { message: string; messageId: string; type: string; time: Date; sender?: HMSPeer; recipient: HMSMessageRecipient; }); }