import React from 'react';
interface FlightPathProps {
  stops?: number;
}
declare const FlightPath: React.FC<FlightPathProps>;
export default FlightPath;
