import * as z from "zod/v3"; export type ThreeDSecure = { /** * The amount to be used for 3DS authentication. Optionally set this value to authenticate a greater amount than the transaction amount. */ amount?: number | null | undefined; }; /** @internal */ export type ThreeDSecure$Outbound = { amount?: number | null | undefined; }; /** @internal */ export declare const ThreeDSecure$outboundSchema: z.ZodType; export declare function threeDSecureToJSON(threeDSecure: ThreeDSecure): string; //# sourceMappingURL=threedsecure.d.ts.map