import { Model } from 'sequelize'; import { WORKIN_DAY_STATUS } from '../../constants/app'; import { IWorkingDayAttributes } from '../../interfaces/workingDayInterface'; import { TWorkingDayCreationAttributes } from '../../types/workingDayType'; declare class WorkingDayModel extends Model implements IWorkingDayAttributes { id: string; dayName: string; status: WORKIN_DAY_STATUS; startTime: Date; endTime: Date; instituteId: string; dayOfWeek: number; academicCalendarId: string; oldId?: string; createdBy: string; updatedBy: string; deletedBy: string; readonly createdAt: Date; readonly updatedAt: Date; readonly deletedAt?: Date; static associate(models: any): void; } export default WorkingDayModel;