import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export declare enum PaymentMethodAfterpayTag { Afterpay = "afterpay" } export type PaymentMethodAfterpayOutput = { dotTag: PaymentMethodAfterpayTag; }; export type PaymentMethodAfterpay = { dotTag: PaymentMethodAfterpayTag; /** * Return URL to return to after payment completion in Afterpay. */ returnUrl: string; }; /** @internal */ export declare const PaymentMethodAfterpayTag$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const PaymentMethodAfterpayTag$outboundSchema: z.ZodNativeEnum; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace PaymentMethodAfterpayTag$ { /** @deprecated use `PaymentMethodAfterpayTag$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum; /** @deprecated use `PaymentMethodAfterpayTag$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum; } /** @internal */ export declare const PaymentMethodAfterpayOutput$inboundSchema: z.ZodType; /** @internal */ export type PaymentMethodAfterpayOutput$Outbound = { ".tag": string; }; /** @internal */ export declare const PaymentMethodAfterpayOutput$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace PaymentMethodAfterpayOutput$ { /** @deprecated use `PaymentMethodAfterpayOutput$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PaymentMethodAfterpayOutput$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PaymentMethodAfterpayOutput$Outbound` instead. */ type Outbound = PaymentMethodAfterpayOutput$Outbound; } export declare function paymentMethodAfterpayOutputToJSON(paymentMethodAfterpayOutput: PaymentMethodAfterpayOutput): string; export declare function paymentMethodAfterpayOutputFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PaymentMethodAfterpay$inboundSchema: z.ZodType; /** @internal */ export type PaymentMethodAfterpay$Outbound = { ".tag": string; return_url: string; }; /** @internal */ export declare const PaymentMethodAfterpay$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace PaymentMethodAfterpay$ { /** @deprecated use `PaymentMethodAfterpay$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PaymentMethodAfterpay$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PaymentMethodAfterpay$Outbound` instead. */ type Outbound = PaymentMethodAfterpay$Outbound; } export declare function paymentMethodAfterpayToJSON(paymentMethodAfterpay: PaymentMethodAfterpay): string; export declare function paymentMethodAfterpayFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=paymentmethodafterpayoutput.d.ts.map