import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { ACHPaymentDetailsError, ACHPaymentDetailsError$Outbound } from "./achpaymentdetailserror.js"; import { CardPaymentDetailsError, CardPaymentDetailsError$Outbound } from "./cardpaymentdetailserror.js"; export type PaymentDetailsError = { allowedMethods?: string | undefined; cardDetails?: CardPaymentDetailsError | undefined; achDetails?: ACHPaymentDetailsError | undefined; metadata?: string | undefined; }; /** @internal */ export declare const PaymentDetailsError$inboundSchema: z.ZodType; /** @internal */ export type PaymentDetailsError$Outbound = { allowedMethods?: string | undefined; cardDetails?: CardPaymentDetailsError$Outbound | undefined; achDetails?: ACHPaymentDetailsError$Outbound | undefined; metadata?: string | undefined; }; /** @internal */ export declare const PaymentDetailsError$outboundSchema: z.ZodType; export declare function paymentDetailsErrorToJSON(paymentDetailsError: PaymentDetailsError): string; export declare function paymentDetailsErrorFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=paymentdetailserror.d.ts.map