import * as React from 'react'; import { FieldMetaProps, FieldHelperProps, FieldInputProps } from './types'; import { FieldConfig, FieldHookConfig } from './Field.types'; import { PathMatchingValue } from './helpers/path-helpers'; export declare function useField(propsOrFieldName: PathMatchingValue | FieldHookConfig): [ FieldInputProps, FieldMetaProps, FieldHelperProps ]; export declare function Field(props: FieldConfig): React.ReactElement> | null;