import * as z from "zod/v3"; export type DeleteThreeDsScenarioGlobals = { merchantAccountId?: string | undefined; }; export type DeleteThreeDsScenarioRequest = { /** * The ID of the 3DS scenario */ threeDsScenarioId: string; /** * The ID of the merchant account to use for this request. */ merchantAccountId?: string | null | undefined; }; /** @internal */ export type DeleteThreeDsScenarioRequest$Outbound = { three_ds_scenario_id: string; merchantAccountId?: string | null | undefined; }; /** @internal */ export declare const DeleteThreeDsScenarioRequest$outboundSchema: z.ZodType; export declare function deleteThreeDsScenarioRequestToJSON(deleteThreeDsScenarioRequest: DeleteThreeDsScenarioRequest): string; //# sourceMappingURL=deletethreedsscenario.d.ts.map