import Foundation /// A protocol for providing key value. public protocol KeyValueProvider { func get(for key: String) -> Value? }