import React from 'react'; import { TextInput as RNTextInput, type TextInputProps } from 'react-native'; const TextInput = React.forwardRef((props, ref) => { return ( ); }); TextInput.displayName = 'TextInput'; export default TextInput;