import { Identity } from '../types'; /** * BrowserStorage is an {@link @spacehq/sdk#IdentityStorage} implementation that works in the browser. * */ export declare class BrowserStorage { private db; constructor(); add(identity: Identity): Promise; list(): Promise; remove(key: string): Promise; }