import { BaseAPIRequestFactory } from './baseapi'; import { Configuration } from '../configuration'; import { RequestContext, ResponseContext, HttpInfo } from '../http/http'; import { StatusListCredential } from '../models/StatusListCredential'; export declare class CredentialStatusListApiRequestFactory extends BaseAPIRequestFactory { getCredentialStatusListEndpoint(id: string, _options?: Configuration): Promise; patchCredentialStatusRevokeCredentialId(id: string, _options?: Configuration): Promise; } export declare class CredentialStatusListApiResponseProcessor { getCredentialStatusListEndpointWithHttpInfo(response: ResponseContext): Promise>; patchCredentialStatusRevokeCredentialIdWithHttpInfo(response: ResponseContext): Promise>; }