UNPKG

@duffel/components

Version:

Component library to build your travel product with Duffel.

17 lines (16 loc) 637 B
/// <reference types="@duffel/api" /> import { ServicePriceMapById } from "@lib/getServicePriceMapById"; import React from "react"; import { CreateOrder, SeatMap } from "@duffel/api/types"; export interface SeatSelectionModalFooterProps { currency: string; selectedServices: CreateOrder["services"]; servicePrices: ServicePriceMapById; isFirstSegment: boolean; isLastSegment: boolean; onNextSegmentButtonClicked: () => void; onPreviousSegmentButtonClicked: () => void; onClose: () => void; seatMaps: SeatMap[]; } export declare const SeatSelectionModalFooter: React.FC<SeatSelectionModalFooterProps>;