import { Model } from 'sequelize'; import { RMS_GRN_ACTION_TYPE } from '../../constants/app'; import { IRmsGrnItemTransactionAttributes } from '../../interfaces/rmsGrnItemTransactionInterface'; declare class RmsGrnItemTransactionModel extends Model implements IRmsGrnItemTransactionAttributes { id: string; instituteId: string; grnItemId: string; resourceId: string; groupId: string; actionType: RMS_GRN_ACTION_TYPE; previousQuantity: number; newQuantity: number; changedQuantity: number; remarks?: string | null; actionDate: Date; actionBy: string; createdBy?: string; updatedBy?: string; deletedBy?: string; readonly createdAt?: Date; readonly updatedAt?: Date; readonly deletedAt?: Date; static associate(models: any): void; } export default RmsGrnItemTransactionModel;