import { CredentialSubject } from '../models/CredentialSubject'; import { StatusListCredentialIssuer } from '../models/StatusListCredentialIssuer'; export declare class StatusListCredential { 'context'?: Set; 'type'?: Set; 'issuer': StatusListCredentialIssuer; 'id': string; 'issuanceDate': Date; 'credentialSubject': CredentialSubject; 'proof': any | null; static readonly discriminator: string | undefined; static readonly attributeTypeMap: Array<{ name: string; baseName: string; type: string; format: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; format: string; }[]; constructor(); }