import * as z from "zod/v3"; import { TravelHubCustomData, TravelHubCustomData$Outbound } from "./travelhubcustomdata.js"; export type TravelhubOptions = { /** * A list of `customData` to pass to the TravelHub API. */ customData?: Array | null | undefined; /** * Customer company name to pass to the TravelHub API. */ companyName?: string | null | undefined; }; /** @internal */ export type TravelhubOptions$Outbound = { customData?: Array | null | undefined; companyName?: string | null | undefined; }; /** @internal */ export declare const TravelhubOptions$outboundSchema: z.ZodType; export declare function travelhubOptionsToJSON(travelhubOptions: TravelhubOptions): string; //# sourceMappingURL=travelhuboptions.d.ts.map