import { VerificationFragment } from '@tradetrust-tt/tt-verify'; interface interpretFragmentsReturnTypes { hashValid: boolean; issuedValid: boolean; identityValid: boolean; } /** * Aggregates verification fragment results into high-level booleans. * @param {VerificationFragment[]} fragments - The list of verification fragments to interpret. * @returns {{hashValid: boolean, issuedValid: boolean, identityValid: boolean}} Aggregated verification states. */ declare const interpretFragments: (fragments: VerificationFragment[]) => interpretFragmentsReturnTypes; declare const OAErrorMessageHandling: (fragments: VerificationFragment[]) => string[]; declare const w3cCredentialStatusRevoked: (fragments: VerificationFragment[]) => boolean; declare const w3cCredentialStatusSuspended: (fragments: VerificationFragment[]) => boolean; declare const errorMessageHandling: (fragments: VerificationFragment[]) => string[]; export { OAErrorMessageHandling, errorMessageHandling, interpretFragments, w3cCredentialStatusRevoked, w3cCredentialStatusSuspended };