import * as z from "zod/v3"; export type TravelHubCustomData = { /** * The key of the custom data field. */ name: string; /** * The value of the custom data field. */ value: string; /** * The type of the custom data field. */ type?: string | null | undefined; }; /** @internal */ export type TravelHubCustomData$Outbound = { name: string; value: string; type?: string | null | undefined; }; /** @internal */ export declare const TravelHubCustomData$outboundSchema: z.ZodType; export declare function travelHubCustomDataToJSON(travelHubCustomData: TravelHubCustomData): string; //# sourceMappingURL=travelhubcustomdata.d.ts.map