import { BaseAPIRequestFactory } from './baseapi'; import { Configuration } from '../configuration'; import { RequestContext, ResponseContext, HttpInfo } from '../http/http'; import { CredentialDefinitionDidUrlResponsePage } from '../models/CredentialDefinitionDidUrlResponsePage'; import { CredentialDefinitionInput } from '../models/CredentialDefinitionInput'; import { CredentialDefinitionResponse } from '../models/CredentialDefinitionResponse'; import { CredentialDefinitionResponsePage } from '../models/CredentialDefinitionResponsePage'; import { PrismEnvelopeResponse } from '../models/PrismEnvelopeResponse'; export declare class CredentialDefinitionRegistryApiRequestFactory extends BaseAPIRequestFactory { createCredentialDefinitionDidUrl(credentialDefinitionInput: CredentialDefinitionInput, _options?: Configuration): Promise; createCredentialDefinitionHttpUrl(credentialDefinitionInput: CredentialDefinitionInput, _options?: Configuration): Promise; getCredentialDefinitionByIdDidUrl(guid: string, _options?: Configuration): Promise; getCredentialDefinitionByIdHttpUrl(guid: string, _options?: Configuration): Promise; getCredentialDefinitionInnerDefinitionByIdDidUrl(guid: string, _options?: Configuration): Promise; getCredentialDefinitionInnerDefinitionByIdHttpUrl(guid: string, _options?: Configuration): Promise; lookupCredentialDefinitionsByQueryDidUrl(author?: string, name?: string, version?: string, tag?: string, offset?: number, limit?: number, order?: string, _options?: Configuration): Promise; lookupCredentialDefinitionsByQueryHttpUrl(author?: string, name?: string, version?: string, tag?: string, offset?: number, limit?: number, order?: string, _options?: Configuration): Promise; } export declare class CredentialDefinitionRegistryApiResponseProcessor { createCredentialDefinitionDidUrlWithHttpInfo(response: ResponseContext): Promise>; createCredentialDefinitionHttpUrlWithHttpInfo(response: ResponseContext): Promise>; getCredentialDefinitionByIdDidUrlWithHttpInfo(response: ResponseContext): Promise>; getCredentialDefinitionByIdHttpUrlWithHttpInfo(response: ResponseContext): Promise>; getCredentialDefinitionInnerDefinitionByIdDidUrlWithHttpInfo(response: ResponseContext): Promise>; getCredentialDefinitionInnerDefinitionByIdHttpUrlWithHttpInfo(response: ResponseContext): Promise>; lookupCredentialDefinitionsByQueryDidUrlWithHttpInfo(response: ResponseContext): Promise>; lookupCredentialDefinitionsByQueryHttpUrlWithHttpInfo(response: ResponseContext): Promise>; }