import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type ThreeDSecureError = { /** * The error code. */ code?: string | null | undefined; /** * The error description. */ description?: string | null | undefined; /** * Detail about the 3DS error. */ detail?: string | null | undefined; /** * Code indicating the 3-D Secure component that identified the error. */ component?: string | null | undefined; }; /** @internal */ export declare const ThreeDSecureError$inboundSchema: z.ZodType; export declare function threeDSecureErrorFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=threedsecureerror.d.ts.map