export type SafeLocalStorageItems = { '@w3m/wallet_id': string; '@w3m/solana_caip_chain': string; '@w3m/solana_wallet': string; }; export declare const SafeLocalStorage: { setItem(key: Key, value: SafeLocalStorageItems[Key]): void; getItem(key: Key_1): SafeLocalStorageItems[Key_1] | null; removeItem(key: Key_2): void; };