/** * Checks if a key exists in the cache. * * @param {string} key - The key to check. * @returns {boolean} `true` if the key exists, `false` otherwise. */ export declare const has: (key: string) => boolean;