import { Model } from 'sequelize'; import { IFeeReminderModelAttributes } from '../../interfaces/feeReminderInterface'; import { TFeeReminderModelCreationAttributes } from '../../types/feeReminderType'; declare class FeeReminderModel extends Model { id: string; userId: string; instituteId: string; sendDate: Date; dueDate: Date; dueAmount: number; templateId: string; batchId?: string; subjectId?: string; feeCollectionId: string; academicCalendarId: string; createdBy: string; updatedBy: string; deletedBy: string; readonly createdAt: Date; readonly deletedAt: string; readonly updatedAt: Date; static associate(models: any): void; static addHooks(models: any): void; } export default FeeReminderModel;