import Account from './Account'; import { Instantiable, InstantiableConfig } from '../Instantiable.abstract'; export declare class OceanSecretStore extends Instantiable { static getInstance(config: InstantiableConfig): Promise; encrypt(did: string, document: any, publisher: Account): Promise; decrypt(did: string, content: string, consumer?: Account, secretStoreUrl?: string): Promise; private getSecretStoreByAccount; private getSecretStore; }