import { Model } from 'sequelize'; import { IPenaltyModelAttributes } from '../../interfaces/penaltyInterface'; import { TPenaltyModelCreationAttributes } from '../../types/penaltyType'; declare class PenaltyModel extends Model { id: string; instituteId?: string; perDayAmount: number; academicCalendarId?: string; createdBy: string; updatedBy: string; deletedBy: string; readonly createdAt: Date; readonly deletedAt: Date; readonly updatedAt: Date; static associate(models: any): void; } export default PenaltyModel;