import { BaseAPIRequestFactory } from './baseapi'; import { Configuration } from '../configuration'; import { RequestContext, ResponseContext, HttpInfo } from '../http/http'; import { AcceptRequestPresentationInvitation } from '../models/AcceptRequestPresentationInvitation'; import { PresentationStatus } from '../models/PresentationStatus'; import { PresentationStatusPage } from '../models/PresentationStatusPage'; import { RequestPresentationAction } from '../models/RequestPresentationAction'; import { RequestPresentationInput } from '../models/RequestPresentationInput'; export declare class PresentProofApiRequestFactory extends BaseAPIRequestFactory { acceptRequestPresentationInvitation(acceptRequestPresentationInvitation: AcceptRequestPresentationInvitation, _options?: Configuration): Promise; createOOBRequestPresentationInvitation(requestPresentationInput: RequestPresentationInput, _options?: Configuration): Promise; getAllPresentation(offset?: number, limit?: number, thid?: string, _options?: Configuration): Promise; getPresentation(presentationId: string, _options?: Configuration): Promise; requestPresentation(requestPresentationInput: RequestPresentationInput, _options?: Configuration): Promise; updatePresentation(presentationId: string, requestPresentationAction: RequestPresentationAction, _options?: Configuration): Promise; } export declare class PresentProofApiResponseProcessor { acceptRequestPresentationInvitationWithHttpInfo(response: ResponseContext): Promise>; createOOBRequestPresentationInvitationWithHttpInfo(response: ResponseContext): Promise>; getAllPresentationWithHttpInfo(response: ResponseContext): Promise>; getPresentationWithHttpInfo(response: ResponseContext): Promise>; requestPresentationWithHttpInfo(response: ResponseContext): Promise>; updatePresentationWithHttpInfo(response: ResponseContext): Promise>; }