/** * Browser-compatible secure storage using localStorage or IndexedDB */ export declare class EncryptedStorageService { private storageKey; saveEncryptedData(identifier: string, data: any, password: string): Promise; loadEncryptedData(identifier: string, password: string): Promise; deleteData(identifier: string): void; private getAllStoredData; clearAll(): void; } //# sourceMappingURL=storage-browser.d.ts.map