export interface BookingOptionGroup<T> {
  name: string;
  title: string;
  options: T[];
}
