import React from 'react';
import { Tag } from '../../types';
interface FlightBannerProps {
  tag: Tag;
  luggageIncluded: boolean;
}
declare const FlightBannerComponent: React.FC<FlightBannerProps>;
export default FlightBannerComponent;
