@qite/tide-booking-component
Version:
React Booking wizard & Booking product component for Tide
9 lines (8 loc) • 342 B
TypeScript
import React from 'react';
import { ExtendedFlightSearchResponseItem, FlightSelectionMode } from '../../../types';
interface FlightSelectionProps {
searchResults: ExtendedFlightSearchResponseItem[];
flightSelectionType: FlightSelectionMode;
}
declare const FlightSelection: React.FC<FlightSelectionProps>;
export default FlightSelection;