export interface RevocationStatusList { revokeCredential(credentialId: number): void; checkCredentialId(credentialId: number): void; isRevoked(credentialId: number): boolean; encoded(): string; }