export declare enum ValidationErrors { UNSUPPORTED_PROOF_PURPOSE = "Unsupported proofPurpose. VCs require proofPurpose to be assertionMethod", MISSING_VERIFICATION = "No reference found in DID Document verificationMethod. It should not be empty", MISSING_PUBLIC_KEY = "Expected to find in DID Document either publicKeyJwk, publicKeyBase58 or publicKeyHex", UNRESOLVED_DID_DOCUMENT = "DID document could not be resolved", INVALID_ISSUER = "issuerDid is not a valid EBSI DID" } export default ValidationErrors;