import { BookingPackageFlight } from "@qite/tide-client/build/types";
import React from "react";
interface SidebarFlightProps {
    title: string;
    flight: BookingPackageFlight;
}
declare const SidebarFlight: React.FC<SidebarFlightProps>;
export default SidebarFlight;
