import type { TextInputProps } from 'react-native'; export interface InputProps extends TextInputProps { label?: string; helperText?: string; error?: boolean; containerClassName?: string; labelClassName?: string; inputClassName?: string; helperClassName?: string; }