@qite/tide-booking-component
Version:
React Booking wizard & Booking product component for Tide
15 lines (14 loc) • 473 B
TypeScript
import React from 'react';
import { FlightSearchResponseFlight } from '@qite/tide-client';
interface IndependentFlightOptionProps {
item: FlightSearchResponseFlight;
onSelect?: () => void;
guid: string | null;
selectedGuid?: string | null;
isOutward: boolean;
showSelectedState?: boolean;
currentSelectedPrice?: number;
price?: number;
}
declare const IndependentFlightOption: React.FC<IndependentFlightOptionProps>;
export default IndependentFlightOption;