// // Groupable.swift // VDS // // Created by Matt Bruce on 5/24/24. // import Foundation public protocol Groupable: Control { /// Property used to add context to the Grouping of a set. var accessibilityValueText: String? { get set } }