UNPKG

@duffel/components

Version:

Component library to build your travel product with Duffel.

13 lines (12 loc) 475 B
/// <reference types="@duffel/api" /> import * as React from "react"; import { StaysRateCancellationTimeline } from "@duffel/api/types"; interface StaysCancellationTimelineGuaranteeProps { cancellationTimeline: StaysRateCancellationTimeline[]; totalAmount: string; bookingDate: string; checkInDate: string; checkInAfterTime?: string; } export declare const StaysCancellationTimelineGuarantee: React.FC<StaysCancellationTimelineGuaranteeProps>; export {};