UNPKG

@duffel/components

Version:

Component library to build your travel product with Duffel.

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