import { Model } from 'sequelize'; import { IInstituteOwnershipHistoryAttributes } from '../../interfaces/instituteOwnershipHistoryInterface'; import { TInstituteOwnershipHistoryCreationAttributes } from '../../types/instituteOwnershipHistoryType'; declare class InstituteOwnershipHistoryModel extends Model { id: string; oldOwnerUserId: string; newOwnerUserId: string; instituteId?: string; vendorCompanyId?: string; createdBy?: string; updatedBy?: string; deletedBy?: string; readonly createdAt: Date; readonly deletedAt?: string; readonly updatedAt: Date; static associate(models: any): void; } export default InstituteOwnershipHistoryModel;