import { AttachmentData, CheckInProperty, EndUser, RelationTypeEnum } from '@bit-ui-libs/common'; export interface RelatedEventData { userInfo: EndUser; attachments: AttachmentData[]; eventDate: string; properties?: CheckInProperty[]; type: RelationTypeEnum; approved?: boolean; checkInEventId?: string; }