import { AppointmentAcuityForm } from './appointment-acuity-form'; export declare class ScheduledAppointment { id: number; /** */ firstName: string; /** */ phone: string; /** */ date: string; /** */ email: string; /** */ lastName: string; /** */ datetime: string; /** */ datetimeCreated: string; /** */ type: string; /** */ appointmentTypeID: number; /** */ calendar: string; /** */ calendarID: number; /** */ noShow: boolean; /** */ canceled: boolean; /** */ forms: AppointmentAcuityForm[]; }