import { SignedVerifiableCredential, DocumentLoader, VerificationResult } from '@trustvc/w3c-vc'; /** * Verifies the signature of a W3C Verifiable Credential. * @param {SignedVerifiableCredential} credential - The signed verifiable credential that needs to be verified. * @param {object} options - Optional value * @param {DocumentLoader} options.documentLoader - The document loader to be used for loading JSON-LD contexts / did. * @returns {Promise} A promise that resolves to the verification result, indicating whether the credential is valid. */ declare const verifyW3CSignature: (credential: SignedVerifiableCredential, options?: { documentLoader?: DocumentLoader; }) => Promise; export { verifyW3CSignature };