import { RequestInfo, RequestInit } from "node-fetch"; export declare function createPrefetch(previousKey: string | null): (info: RequestInfo, init?: RequestInit) => Promise; export declare const isKeyValid: (previousKey: string | null, key: string | null) => boolean;