import { BookingPackageFlight } from "../shared";
export interface BookingPackageFlightPool {
  outwardFlights: BookingPackageFlight[];
  returnFlights: BookingPackageFlight[];
}
