import * as React from "react"; export interface BookingPaymentScheduleListProps { /** * When set, the Add schedule button renders disabled and its tooltip * shows this reason (e.g. "Booking is fully paid."). */ addScheduleDisabledReason?: string | null; bookingId: string; } export declare function BookingPaymentScheduleList({ bookingId, addScheduleDisabledReason, }: BookingPaymentScheduleListProps): React.JSX.Element;