import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { CardPayment } from "./cardpayment.js"; import { GenericPayment } from "./genericpayment.js"; export type Payment = CardPayment | GenericPayment; /** @internal */ export declare const Payment$inboundSchema: z.ZodMiniType; export declare function paymentFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=payment.d.ts.map