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 { PaymentMethodInput, PaymentMethodInput$Outbound } from "./paymentmethodinput.js"; import { ProfileCreationData, ProfileCreationData$Outbound } from "./profilecreationdata.js"; export type GuestPaymentInitializeRequest = { profile: ProfileCreationData; cart: Cart; paymentMethod: PaymentMethodInput; }; /** @internal */ export declare const GuestPaymentInitializeRequest$inboundSchema: z.ZodType; /** @internal */ export type GuestPaymentInitializeRequest$Outbound = { profile: ProfileCreationData$Outbound; cart: Cart$Outbound; payment_method: PaymentMethodInput$Outbound; }; /** @internal */ export declare const GuestPaymentInitializeRequest$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 GuestPaymentInitializeRequest$ { /** @deprecated use `GuestPaymentInitializeRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GuestPaymentInitializeRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GuestPaymentInitializeRequest$Outbound` instead. */ type Outbound = GuestPaymentInitializeRequest$Outbound; } export declare function guestPaymentInitializeRequestToJSON(guestPaymentInitializeRequest: GuestPaymentInitializeRequest): string; export declare function guestPaymentInitializeRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=guestpaymentinitializerequest.d.ts.map