import * as z from "zod/v3"; import { AffirmItineraryOptions, AffirmItineraryOptions$Outbound } from "./affirmitineraryoptions.js"; export type AffirmOptions = { /** * Passes additional discounts to the Affirm widget. */ discounts?: { [k: string]: { [k: string]: any; }; } | null | undefined; /** * Passes itinerary data to the Affirm API. */ itinerary?: AffirmItineraryOptions | null | undefined; }; /** @internal */ export type AffirmOptions$Outbound = { discounts?: { [k: string]: { [k: string]: any; }; } | null | undefined; itinerary?: AffirmItineraryOptions$Outbound | null | undefined; }; /** @internal */ export declare const AffirmOptions$outboundSchema: z.ZodType; export declare function affirmOptionsToJSON(affirmOptions: AffirmOptions): string; //# sourceMappingURL=affirmoptions.d.ts.map