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<FetchLike>[0], init: Parameters<FetchLike>[1], args: CachedFetchArgs) => Promise<Response>;
export {};
