import { Model } from 'sequelize'; import { INSTITUTE_ENTITY_STATUS } from '../../constants/app'; import { IInstituteEntityAttributes } from '../../interfaces/instituteEntityInterface'; import { TInstituteEntityCreationAttributes } from '../../types/instituteEntityType'; declare class InstituteEntityModel extends Model { id: string; title: string; subTitle: string; description: string; svgUrl: string; entityTypeId: string; status: INSTITUTE_ENTITY_STATUS; entityId: string; instituteId: string; isDefault: boolean; code: string; sequenceNumber: number; createdBy: string; updatedBy: string; deletedBy: string; readonly createdAt: Date; readonly deletedAt: string; readonly updatedAt: Date; static associate(models: any): void; } export default InstituteEntityModel;