import { Model } from 'sequelize'; import { IProductModelAttributes } from '../../interfaces/productInterface'; import { TProductsModelCreationAttributes } from '../../types/productType'; import { COMMAN_STATUS } from '../../constants/app'; declare class ProductModel extends Model { id: string; name: string; status: COMMAN_STATUS; instituteId?: string; categoryId?: string; subCategoryId?: string; createdBy: string; updatedBy: string; deletedBy: string; readonly createdAt: Date; readonly deletedAt: string; readonly updatedAt: Date; static associate(models: any): void; } export default ProductModel;