import { SecretsStore } from "./SecretsStore"; export declare class WebSecretsStore extends SecretsStore { set(key: string, value: string): void; get(key: string): string; remove(key: string): void; }