import Trending from './Trending'; declare class Storage { /** * * * @type {string} */ private daypart; /** * * * @param {string} daypart * @return {Storage} */ constructor(daypart: string); /** * * * @return {string} */ readonly storageKey: string; /** * * * @return {Trending | null} */ get(): Trending; /** * * * @param {Trending} trending * @return {Trending} */ set(trending: Trending): any; } export default Storage;