export interface BookingPackageAvailability {
  code: string;
  count: number;
  fromDate: string;
  toDate: string;
  tourCode: string;
  isExternal: boolean;
  onRequestPossible: boolean;
}
