import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export declare enum PaymentMethodKlarnaPaynowTag { KlarnaPaynow = "klarna_paynow" } export type PaymentMethodKlarnaPaynowOutput = { dotTag: PaymentMethodKlarnaPaynowTag; }; export type PaymentMethodKlarnaPaynow = { dotTag: PaymentMethodKlarnaPaynowTag; /** * Return URL to return to after payment completion in Klarna. */ returnUrl: string; }; /** @internal */ export declare const PaymentMethodKlarnaPaynowTag$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const PaymentMethodKlarnaPaynowTag$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 PaymentMethodKlarnaPaynowTag$ { /** @deprecated use `PaymentMethodKlarnaPaynowTag$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum; /** @deprecated use `PaymentMethodKlarnaPaynowTag$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum; } /** @internal */ export declare const PaymentMethodKlarnaPaynowOutput$inboundSchema: z.ZodType; /** @internal */ export type PaymentMethodKlarnaPaynowOutput$Outbound = { ".tag": string; }; /** @internal */ export declare const PaymentMethodKlarnaPaynowOutput$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 PaymentMethodKlarnaPaynowOutput$ { /** @deprecated use `PaymentMethodKlarnaPaynowOutput$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PaymentMethodKlarnaPaynowOutput$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PaymentMethodKlarnaPaynowOutput$Outbound` instead. */ type Outbound = PaymentMethodKlarnaPaynowOutput$Outbound; } export declare function paymentMethodKlarnaPaynowOutputToJSON(paymentMethodKlarnaPaynowOutput: PaymentMethodKlarnaPaynowOutput): string; export declare function paymentMethodKlarnaPaynowOutputFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PaymentMethodKlarnaPaynow$inboundSchema: z.ZodType; /** @internal */ export type PaymentMethodKlarnaPaynow$Outbound = { ".tag": string; return_url: string; }; /** @internal */ export declare const PaymentMethodKlarnaPaynow$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 PaymentMethodKlarnaPaynow$ { /** @deprecated use `PaymentMethodKlarnaPaynow$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PaymentMethodKlarnaPaynow$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PaymentMethodKlarnaPaynow$Outbound` instead. */ type Outbound = PaymentMethodKlarnaPaynow$Outbound; } export declare function paymentMethodKlarnaPaynowToJSON(paymentMethodKlarnaPaynow: PaymentMethodKlarnaPaynow): string; export declare function paymentMethodKlarnaPaynowFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=paymentmethodklarnapaynowoutput.d.ts.map