import React from 'react'; import { ExtendedFlightSearchResponseItem, FlightSelectionMode } from '../../../types'; interface FlightSelectionProps { searchResults: ExtendedFlightSearchResponseItem[]; flightSelectionType: FlightSelectionMode; } declare const FlightSelection: React.FC; export default FlightSelection;