import * as z from "zod/v3"; import * as components from "../components/index.js"; export type CreateThreeDsScenarioGlobals = { merchantAccountId?: string | undefined; }; export type CreateThreeDsScenarioRequest = { /** * The ID of the merchant account to use for this request. */ merchantAccountId?: string | null | undefined; threeDSecureScenarioCreate: components.ThreeDSecureScenarioCreate; }; /** @internal */ export type CreateThreeDsScenarioRequest$Outbound = { merchantAccountId?: string | null | undefined; ThreeDSecureScenarioCreate: components.ThreeDSecureScenarioCreate$Outbound; }; /** @internal */ export declare const CreateThreeDsScenarioRequest$outboundSchema: z.ZodType; export declare function createThreeDsScenarioRequestToJSON(createThreeDsScenarioRequest: CreateThreeDsScenarioRequest): string; //# sourceMappingURL=createthreedsscenario.d.ts.map