import { LookupModel } from '../../../../shared/models/lookup-model'; import { ILookupModel } from './lookup-interface'; export declare class SlotListRecordItem { id: number; slotScheduleId: number; slotTypeName: string; period: string; group: ILookupModel; slotStartTime: string; slotEndTime: string; slotDuration: string; siteId: number; site: LookupModel; appointmentLookup: LookupModel; effectiveStartDate: ILookupModel; effectiveEndDate: string; status: ILookupModel; createdDate: string; createdBy: string; defaultNoOfSlots: string; slotTypeLookup: ILookupModel; canUpdateStatus: boolean; canViewOnly: boolean; durationMins: ILookupModel; constructor(data: unknown); }