import { Model } from 'sequelize'; import { IRmsStorageRackAttributes } from '../../interfaces/rmsStorageInterface'; import { TRmsStorageRackCreationAttributes } from '../../types/rmsStorageType'; import { COMMAN_STATUS } from '../../constants'; declare class RmsStorageRackModel extends Model implements IRmsStorageRackAttributes { id: string; instituteId: string; rackName: string; locationId: string; description?: string | null; 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 RmsStorageRackModel;