import { BrowserStorageInstance } from './types.js'; import '@iconizza/types'; import '../storage/storage.js'; /** * Get stored item with try..catch */ declare function getStoredItem(func: BrowserStorageInstance, key: string): string | null | undefined; /** * Store item with try..catch */ declare function setStoredItem(func: BrowserStorageInstance, key: string, value: string): true | undefined; /** * Remove item with try..catch */ declare function removeStoredItem(func: BrowserStorageInstance, key: string): void; export { getStoredItem, removeStoredItem, setStoredItem };