import { Model } from 'sequelize'; import { IToDoModelAttributes } from '../../interfaces/toDoInterface'; import { TToDoModelCreationAttributes } from '../../types/toDoType'; import { TO_DO_STATUS } from '../../constants/app'; declare class ToDoModel extends Model { id: string; instituteId?: string; task: string; userId: string; dueDate?: Date; remindMe?: Date; status: TO_DO_STATUS; createdBy: string; updatedBy: string; deletedBy: string; readonly createdAt: Date; readonly updatedAt: Date; readonly deletedAt?: Date; static associate(models: any): void; static addHooks(models: any): void; } export default ToDoModel;