import * as React from 'react'; import { TouchableWithoutFeedbackProps } from 'react-native'; import { UseFormField } from '../hooks/useFormField'; export declare type FormFieldProps = React.PropsWithChildren & { wrapInsideAccessibleView?: boolean; }>; export declare const FormField: React.MemoExoticComponent<({ children, wrapInsideAccessibleView, ...props }: FormFieldProps) => JSX.Element>;