/// <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>;
