import { EndpointParams, Entity, FetchResponse } from '@10up/headless-core'; import { FetchHookOptions } from '@10up/headless-core/react'; /** * Prepares params and options for useFetch hooks * * @param _params The fetch params * @param options The fetch options * @returns */ export declare function usePrepareFetch(_params?: Partial

, options?: FetchHookOptions>): { params: Partial

; path: string; options: FetchHookOptions>; };