import { TextInputProps } from 'react-native'; export interface FormInputProps extends Omit { label: string; value: string; onChangeText: (text: string) => void; placeholder?: string; required?: boolean; multiline?: boolean; }