My problem was that I imported the TouchableOpacity
from the react-native-gesture-handler
package, rather then the default react-native
package. That was the package my auto-complete choose to resolve it to. After changing the import to the other package it worked again as intended.
import { TouchableOpacity } from 'react-native';