export = createCacheKey;
/**
 * Creates a cache key string from the given object by concatenating its key-value pairs.
 * Each pair is formatted as "key=value" and pairs are joined by a pipe ("|").
 * Keys with null or undefined values are omitted from the resulting string.
 *
 * @param {Object} [parts={}] - The object containing key-value pairs to include in the cache key.
 * @returns {string} The generated cache key string.
 */
declare function createCacheKey(parts?: any): string;
//# sourceMappingURL=createCacheKey.d.ts.map