import { CalculationCache } from "./interfaces"; /** * Creates a [[CalculationCache]] object, useful for caching [[VNode]] trees. * In practice, caching of [[VNode]] trees is not needed, because achieving 60 frames per second is almost never a problem. * For more information, see [[CalculationCache]]. * * @param The type of the value that is cached. */ export declare let createCache: () => CalculationCache; //# sourceMappingURL=cache.d.ts.map