//#region src/watermark/useSingletonCache.d.ts type GetCache = (cacheKeys: T, callback: () => R) => R; /** * Singleton cache will only take latest `cacheParams` as key * and return the result for callback matching. */ declare function useSingletonCache(): GetCache; //#endregion export { GetCache, useSingletonCache as default };