import { DialogEntity } from './DialogEntity'; import { CustomDataEntity } from './CustomDataEntity'; import { LastMessageEntity } from './LastMessageEntity'; import { DialogType } from './DialogTypes'; export declare class GroupDialogEntity implements DialogEntity { customData: CustomDataEntity; id: string; lastMessage: LastMessageEntity; readonly ownerId: string; type: DialogType; unreadMessageCount: number; updatedAt: string; participantIds: Array; newParticipantIds?: Array; participantsToRemoveIds?: Array; name: string; photo: string | null; constructor(customData: CustomDataEntity, id: string, lastMessage: LastMessageEntity, ownerId: string, type: DialogType, unreadMessageCount: number, updatedAt: string, participantIds: Array, name: string, photo: string); } //# sourceMappingURL=GroupDialogEntity.d.ts.map