import { InputType } from "TextInput"; export type FormTextFieldProps = { name: string; placeholder: string; type?: InputType; label?: string; disabled?: boolean; autoFocus?: boolean; hideErrorMessage?: boolean; }; declare function FormTextField(props: FormTextFieldProps): JSX.Element; export default FormTextField;