declare const defaultCacheKey = "__CACHEDTS__default_cache_key"; type GetCacheKey = (fnName: string | number | symbol, args: unknown[]) => string | symbol | undefined; /** Recursively loops through arguments to build a dash separated key. */ declare const defaultGetCacheKey: (fnName: string | number | symbol, args: unknown[]) => string | symbol; export { type GetCacheKey, defaultCacheKey, defaultGetCacheKey };