import { Model } from 'sequelize'; import { COMMAN_STATUS } from '../../constants/app'; import { IRulesRegulationAttributes } from '../../interfaces/rulesRegulationInterface'; import { TRulesRegulationCreationAttributes } from '../../types/rulesRegulationType'; declare class RulesRegulationModel extends Model { id: string; title: string; subTitle: string; discraption: string; status: COMMAN_STATUS; instituteId: string; createdBy: string; updatedBy: string; deletedBy: string; readonly createdAt: Date; readonly deletedAt: string; readonly updatedAt: Date; static associate(models: any): void; } export default RulesRegulationModel;