export { OpenAttestationDocument, SignedWrappedDocument, WrappedDocument, v2, v3 } from '@tradetrust-tt/tradetrust'; export { DiagnoseError } from '@tradetrust-tt/tradetrust/dist/types/shared/utils'; type KeyPair = { public: string; private: string; }; interface IEncryptionResults { cipherText: string; iv: string; tag: string; key: string; type: string; } export type { IEncryptionResults, KeyPair };