import { SignedVerifiableCredential, DerivedResult } from '@trustvc/w3c-vc'; /** * Derives a credential with selective disclosure based on revealed attributes. * @param {object} credential - The verifiable credential to be selectively disclosed. * @param {string[]} revealedAttributes - Array of selective pointers. * @returns {Promise} A DerivedResult containing the derived proof or an error message. */ declare const deriveW3C: (credential: SignedVerifiableCredential, revealedAttributes: string[]) => Promise; export { deriveW3C };