import { ISecret, ISecretsConnector, ISecretsList } from '../token'; /** * An in memory password connector to store passwords during the session. * Refreshing the page clear the passwords. * * This is the default implementation of ISecretsConnector. */ export declare class InMemoryConnector implements ISecretsConnector { fetch(id: string): Promise; save(id: string, value: ISecret): Promise; remove(id: string): Promise; list(query?: string | undefined): Promise; private _secrets; }