import React from "react"; import type { FormFieldProps, InputComponentOptions } from "./types"; declare function FormField({ label, helperMessage, hasError, inputProps, onChange, value, id, type, required, infoTooltipContent, ...restProps }: FormFieldProps): React.JSX.Element; export default FormField;