import { RequestInstance } from '@hyper-fetch/core'; import { UseSubmitOptionsType, UseSubmitReturnType } from '.'; /** * This hook aims to mutate data on the server. Unlike useFetch, it does not fire automatically - * call the returned `submit` function to trigger the request (e.g., on button click). * @param request * @param options * @returns */ export declare const useSubmit: (request: RequestType, options?: UseSubmitOptionsType) => UseSubmitReturnType; //# sourceMappingURL=use-submit.hooks.d.ts.map