import { Model } from 'sequelize'; import { IAccountCostCenterModelAttributes } from '../../interfaces/accountCostCenterInterface'; import { TAccountCostCenterModelCreationAttributes } from '../../types/accountCostCenterType'; import { AccountCostCenterType } from '../../constants/app'; declare class AccountCostCenterModel extends Model implements IAccountCostCenterModelAttributes { id: string; instituteId: string; academicCalendarId: string; parentCostCenterId: string | null; code: string; name: string; type: AccountCostCenterType; refType: string | null; refId: string | null; createdBy?: string; updatedBy?: string; deletedBy?: string; readonly createdAt: Date; readonly updatedAt: Date; readonly deletedAt?: Date; static associate(models: any): void; } export default AccountCostCenterModel;