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