import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export declare enum PaymentMethodKlarnaTag { Klarna = "klarna" } export type PaymentMethodKlarnaOutput = { dotTag: PaymentMethodKlarnaTag; }; export type PaymentMethodKlarna = { dotTag: PaymentMethodKlarnaTag; /** * Return URL to return to after payment completion in Klarna. */ returnUrl: string; }; /** @internal */ export declare const PaymentMethodKlarnaTag$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const PaymentMethodKlarnaTag$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 PaymentMethodKlarnaTag$ { /** @deprecated use `PaymentMethodKlarnaTag$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum; /** @deprecated use `PaymentMethodKlarnaTag$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum; } /** @internal */ export declare const PaymentMethodKlarnaOutput$inboundSchema: z.ZodType; /** @internal */ export type PaymentMethodKlarnaOutput$Outbound = { ".tag": string; }; /** @internal */ export declare const PaymentMethodKlarnaOutput$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 PaymentMethodKlarnaOutput$ { /** @deprecated use `PaymentMethodKlarnaOutput$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PaymentMethodKlarnaOutput$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PaymentMethodKlarnaOutput$Outbound` instead. */ type Outbound = PaymentMethodKlarnaOutput$Outbound; } export declare function paymentMethodKlarnaOutputToJSON(paymentMethodKlarnaOutput: PaymentMethodKlarnaOutput): string; export declare function paymentMethodKlarnaOutputFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PaymentMethodKlarna$inboundSchema: z.ZodType; /** @internal */ export type PaymentMethodKlarna$Outbound = { ".tag": string; return_url: string; }; /** @internal */ export declare const PaymentMethodKlarna$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 PaymentMethodKlarna$ { /** @deprecated use `PaymentMethodKlarna$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PaymentMethodKlarna$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PaymentMethodKlarna$Outbound` instead. */ type Outbound = PaymentMethodKlarna$Outbound; } export declare function paymentMethodKlarnaToJSON(paymentMethodKlarna: PaymentMethodKlarna): string; export declare function paymentMethodKlarnaFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=paymentmethodklarnaoutput.d.ts.map