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