declare type ParamsType = { cacheMatch?: Response; timestamp: number; }; declare type OutputType = { old: boolean; cachedResponse?: ResponseType; size?: number; }; export declare const checkIfOldCache: ({ timestamp, cacheMatch, }: ParamsType) => Promise>; export {};