import { FlightDetail } from '../../types'; export declare type SegmentProps = { segment: any; key: any; selectedPax: any; setSelectedPax: any; segmentSeatSelection: any; setSegmentSeatSelection: any; forEachPax: any; }; export declare type PaxProps = { key: any; selected: any; alcXbag: any; alcXbagValue: any; setAlcXbagValue: any; alcBulk: any; alcBulkValue: any; setAlcBulkValue: any; alcPiec: any; alcPiecValue: any; setAlcPiecValue: any; }; export declare type FlightSeatsState = { getAllSelections: any; forEachFareSegment: any; flightAncillaries: any; setFlightAncillaries: any; seatSelection: any; setSeatSelection: any; selectionServiceQty: any; setSelectionServiceQty: any; selectedPax: any; setSelectedPax: any; }; export declare function useFlightAncillaries({ client }: { client: any; }): FlightSeatsState; export declare function findInMap(map: any, val: any): [string, any]; export declare function seatMapToTable(seatMap: FlightDetail['pricings'][0]['fares'][0]['segments'][0]['seats_maps'][0], seatPricings: FlightDetail['pricings'][0]['fares'][0]['segments'][0]['seats_pricings']): any;