import { LookupModel } from '../../../shared/models/lookup-model'; export declare class Schedule { scheduleId: number; scheduleName: string; track: LookupModel; daysOfTheWeek: LookupModel[]; startTime: string; endTime: string; currentDate: Date; startDate: string; endDate: string; createdOn: string; createdBy: string; constructor(data: unknown); }