import { Model } from 'sequelize'; import { ISchoolFeeTermsModelAttributes } from '../../interfaces/schoolFeeTermsInterface'; import { PAYMENT_TERMS_TYPE } from '../../constants'; import { TSchoolFeeTermsModelCreationAttributes } from '../../types/schoolFeeTermsType'; export declare class SchoolFeeTermsModel extends Model { id: string; instituteId: string; academicCalendarId: string; stdId: string; title: string; feeTypeId: string; schoolFeeId: string; frequency: PAYMENT_TERMS_TYPE; amount: number; date: Date; oldId?: string; termsDependedId: string; createdBy: string; updatedBy: string; deletedBy: string; readonly createdAt: Date; readonly updatedAt: Date; readonly deletedAt: string; static associate(models: any): void; } export default SchoolFeeTermsModel;