import React from "react"; import { TcResponse, Cart } from "../travelcloud"; import { FlightSearch, FlightDetail } from "../types"; export declare const Od: ({ od, source }: { od: FlightSearch[0]['od1']; source: string; }) => JSX.Element; export declare const FlightsResult: React.StatelessComponent<{ flights: FlightSearch; flightMap: { [key: string]: TcResponse; }; onFlightClick?: (index: number, flight: any) => any; onFareClick?: (index: number, flight: FlightDetail, fareId: string) => any; onFareRulesClick?: (flight: FlightDetail, pricing_id: string) => any; cart: Cart; }>;