import React, { CSSProperties } from 'react'; import { TcResponse, Cart } from '../travelcloud'; import { FlightSearch, FlightDetail } from '../types'; export declare class CarouselArrow extends React.Component<{ iconElement: any; className?: any; style?: CSSProperties; onClick?: any; }> { render(): JSX.Element; } export declare class RenderFares extends React.Component<{ flightIndex: number; cart: Cart; flight: FlightDetail; onFareClick?: (index: number, flight: FlightDetail, fareId: string) => any; windowWidth: any; }> { state: { expanded: boolean; }; backToTopOfFlightItem(id: any, offset: any): void; render(): JSX.Element; } export declare const FlightsResult2: React.StatelessComponent<{ flights: FlightSearch; flightMap: { [key: string]: TcResponse; }; onFlightClick?: (index: number, flight: any) => any; onFareClick?: (index: number, flight: FlightDetail, fareId: string) => any; onFareBreakdownClick?: (fareBreakdownDetail: any) => any; onFareRulesClick?: (fareRulesDetail: any) => any; showFlightModal: any; showFlightMapModal?: (detail: any) => any; type: any; cart: Cart; windowWidth?: any; cabin?: any; }>;