import type { Dispatch } from 'redux'; /** * Returns a thunk that will dispatch a RESET_SCHEMAS action. * * @returns Thunk to dispatch reset schemas. */ declare const resetFormSchema: () => (dispatch: Dispatch) => void; export default resetFormSchema;