import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { Cart, Cart$Outbound } from "./cart.js"; import { PaymentMethodExtended, PaymentMethodExtended$Outbound } from "./paymentmethodextended.js"; export type PaymentInitializeRequest = { cart: Cart; paymentMethod: PaymentMethodExtended; }; /** @internal */ export declare const PaymentInitializeRequest$inboundSchema: z.ZodType; /** @internal */ export type PaymentInitializeRequest$Outbound = { cart: Cart$Outbound; payment_method: PaymentMethodExtended$Outbound; }; /** @internal */ export declare const PaymentInitializeRequest$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 PaymentInitializeRequest$ { /** @deprecated use `PaymentInitializeRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PaymentInitializeRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PaymentInitializeRequest$Outbound` instead. */ type Outbound = PaymentInitializeRequest$Outbound; } export declare function paymentInitializeRequestToJSON(paymentInitializeRequest: PaymentInitializeRequest): string; export declare function paymentInitializeRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=paymentinitializerequest.d.ts.map