import * as FinalForm from 'final-form'; import * as ReactFinalForm from 'react-final-form'; import { StringIndexedObject } from '@befe/brick-utils'; export { FinalForm }; export { ReactFinalForm }; export type ReactFinalFormFieldMetaState = ReactFinalForm.FieldMetaState; export type FinalFormState = FinalForm.FormState; export declare const FORM_ERROR: "FINAL_FORM/form-error"; export declare const FORM_ARRAY_ERROR: "FINAL_FORM/array-error"; export type FieldValue = any; export type FormValues = StringIndexedObject; export type ErrorMessage = string; export type FormErrors = StringIndexedObject; export type FormValidationResult = FormErrors | undefined; export type FieldValidationResult = ErrorMessage | undefined; export type FinalFieldRenderProps = ReactFinalForm.FieldRenderProps; export type FinalFormRenderProps = ReactFinalForm.FormRenderProps;