import { IncrementalCacheKind, type IncrementalCacheItem, type ResponseCacheEntry } from './types'; import { RouteKind } from '../route-kind'; export declare function fromResponseCacheEntry(cacheEntry: ResponseCacheEntry): Promise; export declare function toResponseCacheEntry(response: IncrementalCacheItem): Promise; export declare function routeKindToIncrementalCacheKind(routeKind: RouteKind): IncrementalCacheKind;