@duffel/components
Version:
Component library to build your travel product with Duffel.
13 lines (12 loc) • 466 B
TypeScript
/// <reference types="@duffel/api" />
import * as React from "react";
import { StaysRateCancellationTimeline } from "@duffel/api/types";
interface StaysCancellationTimelinePayNowProps {
cancellationTimeline: StaysRateCancellationTimeline[];
totalAmount: string;
bookingDate: string;
checkInDate: string;
checkInAfterTime?: string;
}
export declare const StaysCancellationTimelinePayNow: React.FC<StaysCancellationTimelinePayNowProps>;
export {};