import type { FetchLike } from "@prismicio/custom-types-client"; import type { GatsbyCache } from "gatsby"; import type { Response } from "node-fetch"; type CachedFetchArgs = { fetch: FetchLike; cache: GatsbyCache; name: string; }; export declare const cachedFetch: (input: Parameters[0], init: Parameters[1], args: CachedFetchArgs) => Promise; export {};