import { RequestInstance } from '@hyper-fetch/core'; import { UseFetchOptionsType, UseFetchReturnType } from '.'; /** * This hook aims to retrieve data from the server. It automatically fetches on mount and * refetches based on dependencies, with support for caching, polling, and suspense. * @param request Request instance * @param options Hook options * @returns */ export declare const useFetch: (request: R, options?: UseFetchOptionsType) => UseFetchReturnType; //# sourceMappingURL=use-fetch.hooks.d.ts.map