import { ISecret, ISecretsConnector, ISecretsList } from '../token'; /** * Example connector that save the secrets to the local storage. * * WARNING: It should not be used in production, since the passwords are stored as plain * text in the local storage of the browser. */ export declare class LocalStorageConnector implements ISecretsConnector { storage: string; constructor(); fetch(id: string): Promise; save(id: string, value: ISecret): Promise; remove(id: string): Promise; list(query?: string | undefined): Promise; }