Inside this function, what is the type of `value` after the guard?func describe(_ input: Int?) { guard let value = input else { return } // type of value here? }