swift::Array within C++ SwiftPM target

I've got a Swift Package that includes a C++ target and I'd like to use swift::Array instead of passing a pointer and a count separately.

Since I'm within a Swift Package, there doesn't seem to be a generated interface header that I can use, as is mentioned in the example here: Swift.org - Mixing Swift and C++

Is there a way to do this?