import { RevocationStatusList } from './revocationStatusList.js'; import { StatusListCredentialResponse } from '../resolvers/statusListCredentialFetcher.js'; import { StatusListType } from './statusListReference.js'; export interface StatusListDecoder { getEncodedList(data: string | StatusListCredentialResponse): RevocationStatusList; } export declare class StatusListDecoderFactory { static getDecoder(statusReferenceType: StatusListType): StatusListDecoder; static getDecoderFromData(data: string | StatusListCredentialResponse): StatusListDecoder; }