import React from "react"; import { TextInputProps, TextProps } from "react-native"; import { TextInput } from "react-native"; export function Input(props: TextInputProps) { const { style, ...otherProps } = props; return ( ); }