///
import { ProFormInstance } from '@fexd/pro-form';
export default function usePersistForm(form: ProFormInstance): {
prevState: any;
debouncedState: any;
throttledState: any;
prevDebouncedState: any;
prevThrottledState: any;
getState: () => any;
getPrevState: () => any;
getDebouncedState: () => any;
getThrottledState: () => any;
getPrevDebouncedState: () => any;
getPrevThrottledState: () => any;
setState: import("react").Dispatch | import("@fexd/pro-utils").ProSetState;
resetState: () => void;
state: any;
};