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