import * as z from "zod/v3"; import { ThreeDSecureScenarioConditions, ThreeDSecureScenarioConditions$Outbound } from "./threedsecurescenarioconditions.js"; import { ThreeDSecureScenarioOutcome, ThreeDSecureScenarioOutcome$Outbound } from "./threedsecurescenariooutcome.js"; export type ThreeDSecureScenarioUpdate = { /** * Conditions for the scenario. */ conditions?: ThreeDSecureScenarioConditions | null | undefined; /** * Outcome for the scenario. */ outcome?: ThreeDSecureScenarioOutcome | null | undefined; }; /** @internal */ export type ThreeDSecureScenarioUpdate$Outbound = { conditions?: ThreeDSecureScenarioConditions$Outbound | null | undefined; outcome?: ThreeDSecureScenarioOutcome$Outbound | null | undefined; }; /** @internal */ export declare const ThreeDSecureScenarioUpdate$outboundSchema: z.ZodType; export declare function threeDSecureScenarioUpdateToJSON(threeDSecureScenarioUpdate: ThreeDSecureScenarioUpdate): string; //# sourceMappingURL=threedsecurescenarioupdate.d.ts.map