import { InferProps } from 'prop-types'; import { StyleProp, TextStyle, TextInputProps, TouchableOpacityProps } from 'react-native'; export type TextStyleProp = StyleProp; export type ErrorStyleProp = { errorStyle?: TextStyleProp } export type ReinputProps = TextInputProps & InferProps & ErrorStyleProp export type ReinputButtonProps = TouchableOpacityProps & InferProps & ErrorStyleProp