import { Model } from 'sequelize'; import { IEntityGroupModelAttributes } from '../../interfaces/entityGroupInterface'; import { TEntityGroupModelCreationAttributes } from '../../types/entityGroupType'; import { COMMAN_STATUS } from '../../constants/app'; export declare class EntityGroupModel extends Model { id: string; title: string; isDefault: boolean; standardId: string; instituteId: string; academicCalendarId: string; entityIds: string[]; status: COMMAN_STATUS; selectionCount: number; createdBy: string; updatedBy: string; deletedBy: string; readonly createdAt: Date; readonly updatedAt: Date; readonly deletedAt: string; static associate(models: any): void; } export default EntityGroupModel;