import { DialogType } from '../../../Domain/entity/DialogTypes'; export declare class RemoteDialogDTO { id: string; type: DialogType; ownerId: string; participantId: string; participantsIds: Array; newParticipantsIds?: Array; updatedAt: string; lastMessageText: string; lastMessageUserId: number; lastMessageDateSent: number; lastMessageId: string; unreadMessageCount: number; name: string; photo: string; is_join_required: number | undefined | null; constructor(); } //# sourceMappingURL=RemoteDialogDTO.d.ts.map