@duffel/components
Version:
Component library to build your travel product with Duffel.
13 lines (12 loc) • 543 B
TypeScript
/// <reference types="@duffel/api" />
import { CreateOrderService, OfferAvailableServiceCFAR } from "@duffel/api/types";
import React from "react";
import { WithServiceInformation } from "src/types";
export interface CfarSelectionModalFooterProps {
service: OfferAvailableServiceCFAR;
selectedServices: WithServiceInformation<CreateOrderService>[];
onAddCfarService: () => void;
onRemoveCfarService: () => void;
onClose: () => void;
}
export declare const CfarSelectionModalFooter: React.FC<CfarSelectionModalFooterProps>;