@duffel/components
Version:
Component library to build your travel product with Duffel.
12 lines (11 loc) • 508 B
TypeScript
/// <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>;