import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export declare enum PaymentMethodKlarnaAccountTag { KlarnaAccount = "klarna_account" } export type PaymentMethodKlarnaAccountOutput = { dotTag: PaymentMethodKlarnaAccountTag; }; export type PaymentMethodKlarnaAccount = { dotTag: PaymentMethodKlarnaAccountTag; /** * Return URL to return to after payment completion in Klarna. */ returnUrl: string; }; /** @internal */ export declare const PaymentMethodKlarnaAccountTag$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const PaymentMethodKlarnaAccountTag$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 PaymentMethodKlarnaAccountTag$ { /** @deprecated use `PaymentMethodKlarnaAccountTag$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum; /** @deprecated use `PaymentMethodKlarnaAccountTag$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum; } /** @internal */ export declare const PaymentMethodKlarnaAccountOutput$inboundSchema: z.ZodType; /** @internal */ export type PaymentMethodKlarnaAccountOutput$Outbound = { ".tag": string; }; /** @internal */ export declare const PaymentMethodKlarnaAccountOutput$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 PaymentMethodKlarnaAccountOutput$ { /** @deprecated use `PaymentMethodKlarnaAccountOutput$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PaymentMethodKlarnaAccountOutput$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PaymentMethodKlarnaAccountOutput$Outbound` instead. */ type Outbound = PaymentMethodKlarnaAccountOutput$Outbound; } export declare function paymentMethodKlarnaAccountOutputToJSON(paymentMethodKlarnaAccountOutput: PaymentMethodKlarnaAccountOutput): string; export declare function paymentMethodKlarnaAccountOutputFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PaymentMethodKlarnaAccount$inboundSchema: z.ZodType; /** @internal */ export type PaymentMethodKlarnaAccount$Outbound = { ".tag": string; return_url: string; }; /** @internal */ export declare const PaymentMethodKlarnaAccount$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 PaymentMethodKlarnaAccount$ { /** @deprecated use `PaymentMethodKlarnaAccount$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PaymentMethodKlarnaAccount$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PaymentMethodKlarnaAccount$Outbound` instead. */ type Outbound = PaymentMethodKlarnaAccount$Outbound; } export declare function paymentMethodKlarnaAccountToJSON(paymentMethodKlarnaAccount: PaymentMethodKlarnaAccount): string; export declare function paymentMethodKlarnaAccountFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=paymentmethodklarnaaccountoutput.d.ts.map