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