import { LookupModel } from '../../../shared/models/lookup-model'; import { DynamicLeadTimeListModel } from './related-appointment-dynamic-lead-time.model'; export declare class RelatedAppointmentItem { relationId: number; id: number; appointmentName: string; poolingRelease: LookupModel; mandatory: string; allowCancellations: string; allowRescheduling: string; walkIns: string; status: LookupModel; createdOn: string; createdByName: string; relatedDynamicLeadTimeList: DynamicLeadTimeListModel[]; relatedScheduleList: DynamicLeadTimeListModel[]; constructor(data: unknown); }