/** * * Represents the read status of a message for a specific user, tracking whether it has been read * and when. * / */ export declare class MessageReadStatus { /** * * The timestamp (unix epoch in ms) when the message was read. */ time: number | undefined; /** * * Whether the message has been read. */ read: boolean; constructor(partial: Partial); toJSON(): object; static fromJSON(json: any, ignoreUnknownKeys?: boolean, path?: Array): MessageReadStatus; }