import * as Encryption from './encryption-types'; import * as Identity from './identity-types'; /** Decryption provider interface */ export interface IDecryptionProvider { supportedMethods: Encryption.METHOD[]; supportedIdentityTypes: Identity.TYPE[]; decrypt: (encryptedData: Encryption.IEncryptedData, signer: Identity.IIdentity) => Promise; isIdentityRegistered: (identity: Identity.IIdentity) => Promise; } //# sourceMappingURL=decryption-provider-types.d.ts.map