import { TextInputProps } from 'react-native'; declare type InputTextProps = { placeholder?: string; textInputProps?: TextInputProps; labelTopValue?: number; borderColor?: string; borderWidth?: number; paddingVertical?: number; borderRadius?: number; value: string; onChangeText: (value: string) => void; }; declare const App: (props: InputTextProps) => JSX.Element; export default App;