import { NativeMethods, TextInputProps } from "react-native"
const inputRef = React.useRef<TextInputProps & NativeMethods>(null);
// later on in jsx
return (
<TextInput
ref={inputRef}
style={styles.input}
onChangeText={onChangeText}
value={text}
/>
)