import { RevocationStatusList } from './revocationStatusList.js'; import { StatusListDecoder } from './statusListDecoderFactory.js'; import { StatusListCredentialResponse } from '../resolvers/statusListCredentialFetcher.js'; export type StatusListCredentialSubject = { id?: string; type: string; encodedList: string; statusPurpose?: string; statusListIndex?: string; statusListCredential?: string; }; export declare class CredentialStatusListDecoder implements StatusListDecoder { getEncodedList(data: string | StatusListCredentialResponse): RevocationStatusList; private extractCredentialSubject; }