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