import { NgDocCachedData } from '../interfaces';
/**
 * Updates cache for given files
 * This function creates object and writes it to cache file
 * @param id - unique id for cache
 * @param cache - cache object
 */
export declare function updateCache<TData>(id: string, cache: NgDocCachedData<TData>): void;
