import React from 'react'; import type { StyleProp, TextInputProps, TextStyle } from 'react-native'; interface FormFieldProps extends TextInputProps { label?: string; name: string; labelStyle?: StyleProp; errStyle?: StyleProp; } export declare const TextField: React.FC; export {};