import UIKit public protocol CellConfinable: UIView { associatedtype Item var isSelected: Bool { get set } var isHighlighted: Bool { get set } func prepareForReuse() func configure(for item: Item) }