import { VEResEnrolled, PARes } from '../types'; interface EnrollmentScenario { description: string; threedsVersion: '1' | '2'; reasonCode: string; veresEnrolled: VEResEnrolled; pares: PARes | null; outcome: { authenticationType?: 'bypass' | 'frictionless' | 'challenge'; success: boolean; errorCode?: string; }; } declare const failedEnrollmentRequestScenario: EnrollmentScenario; declare const enrollmentScenarios: EnrollmentScenario[]; export { enrollmentScenarios, failedEnrollmentRequestScenario }; export type { EnrollmentScenario };