import { InputDescriptorV1, InputDescriptorV2 } from '@sphereon/pex-models'; import { IInternalPresentationDefinition } from '../../types/Internal.types'; import { WrappedVerifiableCredential } from '../../types/PexCredentialMapper'; import { HandlerCheckResult } from '../core'; import { EvaluationClient } from '../evaluationClient'; import { AbstractEvaluationHandler } from './abstractEvaluationHandler'; export declare function eligibleInputDescriptorsForWrappedVc(inputDescriptors: Array, vcIndex: number, results: HandlerCheckResult[]): { inputDescriptor: InputDescriptorV1 | InputDescriptorV2; inputDescriptorIndex: number; }[]; export declare class MarkForSubmissionEvaluationHandler extends AbstractEvaluationHandler { constructor(client: EvaluationClient); getName(): string; handle(pd: IInternalPresentationDefinition, wrappedVcs: WrappedVerifiableCredential[]): void; private retrieveNoErrorStatus; private produceSuccessResults; private produceErrorResults; }