export interface TimeSlot { bookingKey?: string; /** Time is in UTC */ start: Date; /** Time is in UTC */ end: Date; expiresAt?: Date; price: number; isPriority: boolean; numAppointmentsAvailable: number; }