import { Model } from 'sequelize'; import { APP_TYPE, DESIGNATION_TYPE, USER_TYPES } from '../../constants'; import { IMasterDesignationAttributes } from '../../interfaces'; import { TMasterDesignationCreationAttributes } from '../../types/masterDesignationType'; declare class MasterDesignationModel extends Model { id: string; designationTitle: DESIGNATION_TYPE[]; title: string; appType: APP_TYPE[]; userType: USER_TYPES[]; isInstituteDefault: boolean; instituteId: string; masterId: string; createdBy: string; updatedBy: string; deletedBy: string; readonly createdAt: Date; readonly updatedAt: Date; readonly deletedAt: string; static associate(models: any): void; } export default MasterDesignationModel;