import { IconizzaJSON } from '@iconizza/types'; import { IconStorage } from '../storage/storage.js'; import { IconStorageWithCache } from './types.js'; /** * Update lastModified in storage * * Returns false if item should not be added to storage because lastModified is too low */ declare function updateLastModified(storage: IconStorageWithCache, lastModified: number): boolean; /** * Function to cache icons */ declare function storeInBrowserStorage(storage: IconStorage, data: IconizzaJSON): void; export { storeInBrowserStorage, updateLastModified };