import { VerificationCheck } from '../../types/check.js'; /** * Bitstring status list check for revocation/suspension status. * * This is a **fatal** check: if the verifier cannot conclude that the * credential is currently un-revoked and un-suspended (because the * status list is missing, has an invalid signature, is expired, has a * wrong type, or actually marks the credential as revoked or * suspended), the overall verification result is `verified: false`. * * `statusSuite` is the sole owner of status verification; the proof * suite no longer performs an embedded status check (P-E, 2026-04-19). * * Skipped (and therefore non-failing) when: * - Credential has no `credentialStatus`. * - Status type is a legacy type (`StatusList2021Entry`, * `1EdTechRevocationList`). */ export declare const bitstringStatusCheck: VerificationCheck; //# sourceMappingURL=bitstring-status-check.d.ts.map