/** ℹ️ This enum is non-exhaustive. */ export declare const AppointmentStatus: { readonly Confirmed: "confirmed"; readonly Pending: "pending"; readonly Reserved: "reserved"; readonly InProgress: "in_progress"; readonly Completed: "completed"; readonly Cancelled: "cancelled"; }; export type AppointmentStatus = (typeof AppointmentStatus)[keyof typeof AppointmentStatus];