UNPKG

@duffel/components

Version:

Component library to build your travel product with Duffel.

13 lines (12 loc) 589 B
/// <reference types="@duffel/api" /> import { CreateOrderService, Offer, OfferAvailableServiceCFAR } from "@duffel/api/types"; import React from "react"; import { WithServiceInformation } from "src/types"; export interface CfarSelectionModalProps { isOpen: boolean; offerCurrency?: Offer["base_currency"]; service?: OfferAvailableServiceCFAR; selectedServices: WithServiceInformation<CreateOrderService>[]; onClose: (selectedServices: WithServiceInformation<CreateOrderService>[]) => void; } export declare const CfarSelectionModal: React.FC<CfarSelectionModalProps>;