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