import React from 'react'; import { FormikState } from 'formik'; import { State } from './form-types'; declare type ValidationSetter = React.Dispatch>; declare type ResetForm = (nextState?: Partial> | undefined) => void; export declare const useFormEffects: (identifier: string, setValidationSchema: ValidationSetter, state: State, resetForm: ResetForm, isSubmitted: boolean) => void; export {};