/** @jsx jsx */ import { FunctionComponent, CSSProperties } from 'react'; export { Field as FormikField, useField as useFormikField, useFormikContext, } from 'formik'; export interface IUserFieldProps { label: string; name: string; description?: string; id?: string; /** * Class applied to the most external div element containing the field */ className?: string; style?: CSSProperties; required?: boolean; } export interface IFieldProps extends IUserFieldProps { error?: string; touched?: boolean; noLabelWrap?: boolean; } export declare const Field: FunctionComponent;