import { Model } from 'sequelize'; import { IFeeReminderSettingModelAttributes } from '../../interfaces/feeReminderSettingInterface'; import { TFeeReminderSettingModelCreationAttributes } from '../../types/feeReminderSettingType'; import { BOOLEAN_STATUS, FEE_REMINDER_SETTING_STATUS } from '../../constants/app'; declare class FeeReminderSettingModel extends Model { id: string; instituteId: string; templateData: string; status: FEE_REMINDER_SETTING_STATUS; typeId: string; default: BOOLEAN_STATUS; oldId: string; academicCalendarId: string; createdBy: string; updatedBy: string; deletedBy: string; readonly createdAt: Date; readonly deletedAt: string; readonly updatedAt: Date; static associate(models: any): void; } export default FeeReminderSettingModel;