import Foundation import DataLiteCore package protocol ValueDecoder: Decoder { func decodeNil() -> Bool func decodeDate() throws -> Date func decode(_ type: T.Type) throws -> T }