import { AnyObject, Model } from '@loopback/repository'; import { StatusType } from './enums'; export declare class EventAttendeeViewItemDTO extends Model { id: string; bgColor?: string; description?: string; endDateTime?: Date; extId?: string; extMetadata?: AnyObject; fgColor?: string; iCalUid?: string; isFullDayEvent?: boolean; isLocked?: boolean; link?: string; location?: string; meetingLink?: string; identifier?: string; startDateTime?: Date; status?: StatusType; summary?: string; timezone?: string; attendeeId?: string; isOptional?: boolean; attendeeIdentifier?: string; isOrganizer?: boolean; messages?: string; eventId: string; }