import * as z from "zod/v3"; export type ApplePaySessionRequest = { /** * The validation URL as provided by the Apple SDK when processing a payment. */ validationUrl: string; /** * The domain on which Apple Pay is being loaded. */ domainName: string; }; /** @internal */ export type ApplePaySessionRequest$Outbound = { validation_url: string; domain_name: string; }; /** @internal */ export declare const ApplePaySessionRequest$outboundSchema: z.ZodType; export declare function applePaySessionRequestToJSON(applePaySessionRequest: ApplePaySessionRequest): string; //# sourceMappingURL=applepaysessionrequest.d.ts.map