/// <reference types="@duffel/api" />
import { CreateOrderService, Offer } from "@duffel/api/types";
import React from "react";
import { WithServiceInformation } from "src/types";
export interface CfarSelectionCardProps {
    isLoading: boolean;
    offer?: Offer;
    selectedServices: WithServiceInformation<CreateOrderService>[];
    setSelectedServices: (selectedServices: WithServiceInformation<CreateOrderService>[]) => void;
}
export declare const CfarSelectionCard: React.FC<CfarSelectionCardProps>;
