/// <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 {};
