import type { Dispatch } from '@lynx-js/react';
import { type Action } from './formReducer.jsx';
export declare const setIsSubmitting: <T>(dispatch: Dispatch<Action<T>>, isSubmitting: boolean) => void;
export declare const setValue: <T>(dispatch: Dispatch<Action<T>>, field: keyof T, value: any) => void;
export declare const setError: <T>(dispatch: Dispatch<Action<T>>, field: keyof T, error: any) => void;
export declare const setTouched: <T>(dispatch: Dispatch<Action<T>>, field: keyof T, touched: boolean) => void;
export declare const reset: <T>(dispatch: Dispatch<Action<T>>, initialValues: any) => void;
