I just start to learn the react-native with Expo SDK.I follow the official tutorial to init managed Typescript template.
And I found that I can only import unique React-native component.
Not the React-native component which has same name across Dom, React.
I saw the node-modules already have the Types but not know why the auto-import not work.
This is what vscode try to find but not go through the React-native type definition.
But React-native types has the type definition.
If I import the Text manually from the React-native, it can get the correct definition.
import { Image, StyleSheet, Text, View } from 'react-native';
Any help is appreciated.