import React from 'react'; import { FlightResult } from '../../types'; interface FlightCardProps { result: FlightResult; } declare const FlightCard: React.FC; export default FlightCard;