import * as z from "zod/v3"; import { FiservInstallmentOptions, FiservInstallmentOptions$Outbound } from "./fiservinstallmentoptions.js"; export type FiservOptions = { /** * Passes installment data to the Fiserv API. This is now also a dedicated feature on the Gr4vy API. */ installmentOptions?: FiservInstallmentOptions | null | undefined; }; /** @internal */ export type FiservOptions$Outbound = { installmentOptions?: FiservInstallmentOptions$Outbound | null | undefined; }; /** @internal */ export declare const FiservOptions$outboundSchema: z.ZodType; export declare function fiservOptionsToJSON(fiservOptions: FiservOptions): string; //# sourceMappingURL=fiservoptions.d.ts.map