UNPKG

@duffel/components

Version:

Component library to build your travel product with Duffel.

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