import { DateTime } from'luxon';
/**
* Represents a time slot with start and end times
*/exportinterfaceSlot {
start: DateTime;
end: DateTime;
metadata: any;
}
/**
* Strategy for determining if slots overlap
*/exporttypeOverlapStrategy = 'strict' | 'inclusive';