import { Model } from 'sequelize'; import { IRmsStorageSlotAttributes } from '../../interfaces/rmsStorageInterface'; import { TRmsStorageSlotCreationAttributes } from '../../types/rmsStorageType'; import { COMMAN_STATUS } from '../../constants'; declare class RmsStorageSlotModel extends Model implements IRmsStorageSlotAttributes { id: string; instituteId: string; rackId: string; slotName: string; status: COMMAN_STATUS; createdBy?: string; updatedBy?: string; deletedBy?: string; readonly createdAt?: Date; readonly updatedAt?: Date; readonly deletedAt?: Date; static associate(models: any): void; } export default RmsStorageSlotModel;