export type AppointmentStatus = 'scheduled' | 'completed' | 'missed_justified' | 'missed_unjustified' | 'cancelled' | 'rescheduled';
export type AppointmentType = 'single';
export type AppointmentProfessional = {
    id: string;
    name: string;
};
export type Appointment = {
    id: string;
    scheduledAt: Date;
    status: AppointmentStatus;
    type: AppointmentType;
    professional: AppointmentProfessional;
};
//# sourceMappingURL=appointment.d.ts.map