import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type ThreeDSecureV2 = { version: string; authenticationResponse?: string | null | undefined; directoryResponse?: string | null | undefined; directoryTransactionId?: string | null | undefined; transactionReason?: string | null | undefined; cavv?: string | null | undefined; eci?: string | null | undefined; cardholderInfo?: string | null | undefined; }; /** @internal */ export declare const ThreeDSecureV2$inboundSchema: z.ZodType; export declare function threeDSecureV2FromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=threedsecurev2.d.ts.map