import type { HMSMessageRecipientType } from './HMSMessageRecipientType'; import type { HMSPeer } from './HMSPeer'; import type { HMSRole } from './HMSRole'; export declare class HMSMessageRecipient { recipientType: HMSMessageRecipientType; recipientPeer?: HMSPeer; recipientRoles: HMSRole[]; constructor(params: { recipientType: HMSMessageRecipientType; recipientPeer?: HMSPeer; recipientRoles?: HMSRole[]; }); }