import { TextInputProps } from 'react-native'; export interface CustomInputProps extends TextInputProps { label: string; isPassword?: boolean; rightActionText?: string; onRightActionPress?: () => void; error?: string; }