/** Supported booking statuses. */ export declare const BookingStatus: { readonly Pending: "PENDING"; readonly CancelledByCustomer: "CANCELLED_BY_CUSTOMER"; readonly CancelledBySeller: "CANCELLED_BY_SELLER"; readonly Declined: "DECLINED"; readonly Accepted: "ACCEPTED"; readonly NoShow: "NO_SHOW"; }; export type BookingStatus = (typeof BookingStatus)[keyof typeof BookingStatus];