import { TextInputProps, StyleProp, ViewStyle } from 'react-native'; export interface InputFieldProps extends TextInputProps { label?: string; containerStyle?: StyleProp; renderRightAccessory?: () => React.ReactNode; }