import { Model } from 'sequelize'; import { IAccountFinancialYearModelAttributes } from '../../interfaces/accountFinancialYearInterface'; import { TAccountFinancialYearModelCreationAttributes } from '../../types/accountFinancialYearType'; import { COMMAN_STATUS } from '../../constants/app'; declare class AccountFinancialYearModel extends Model { id: string; instituteId: string; academicCalendarId: string; name: string; startDate: Date; endDate: Date; isActive: boolean; isClosed: boolean; status: COMMAN_STATUS; createdBy?: string; updatedBy?: string; deletedBy?: string; createdAt?: Date; updatedAt?: Date; deletedAt?: Date; static associate(models: any): void; } export default AccountFinancialYearModel;