Creates an Unknown type.
Example usage is shown below.
const T = Type.Unknown() // const T = { }
type T = Static<typeof T> // type T = unknown
Use the IsUnknown function to guard values of this type.
Type.IsUnknown(value) // value is TUnknown