import { Model } from 'sequelize'; import { IWorkOffDaysModelAttributes } from '../../interfaces/workOffDaysInterface'; import { USER_TYPES } from '../../constants/app'; import { TIWorkOffDaysModelCreationAttributes } from '../../types/workOffDaysType'; declare class WorkOffDaysModel extends Model { id: string; userType: USER_TYPES; offDayPattern?: number[]; entityId?: string; slotId?: string; workingDayId?: string; userId?: string; academicCalendarId?: string; instituteId?: string; createdBy: string; updatedBy: string; deletedBy: string; readonly createdAt: Date; readonly updatedAt: Date; readonly deletedAt?: Date; static associate(models: any): void; } export default WorkOffDaysModel;