import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export declare enum PaymentMethodReferenceTag { Id = "id" } export type PaymentMethodReference = { dotTag: PaymentMethodReferenceTag; /** * Payment ID of the saved Bolt Payment method. */ id: string; }; /** @internal */ export declare const PaymentMethodReferenceTag$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const PaymentMethodReferenceTag$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 PaymentMethodReferenceTag$ { /** @deprecated use `PaymentMethodReferenceTag$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum; /** @deprecated use `PaymentMethodReferenceTag$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum; } /** @internal */ export declare const PaymentMethodReference$inboundSchema: z.ZodType; /** @internal */ export type PaymentMethodReference$Outbound = { ".tag": string; id: string; }; /** @internal */ export declare const PaymentMethodReference$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 PaymentMethodReference$ { /** @deprecated use `PaymentMethodReference$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PaymentMethodReference$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PaymentMethodReference$Outbound` instead. */ type Outbound = PaymentMethodReference$Outbound; } export declare function paymentMethodReferenceToJSON(paymentMethodReference: PaymentMethodReference): string; export declare function paymentMethodReferenceFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=paymentmethodreference.d.ts.map