import * as z from "zod/v3"; export type EcommpayOptions = { /** * The start date of the booking in ISO 8601 format (YYYY-MM-DD). Required for certain MCCs. */ bookingStartDate?: string | null | undefined; /** * The end date of the booking in ISO 8601 format (YYYY-MM-DD). Required for certain MCCs. */ bookingEndDate?: string | null | undefined; }; /** @internal */ export type EcommpayOptions$Outbound = { booking_start_date?: string | null | undefined; booking_end_date?: string | null | undefined; }; /** @internal */ export declare const EcommpayOptions$outboundSchema: z.ZodType; export declare function ecommpayOptionsToJSON(ecommpayOptions: EcommpayOptions): string; //# sourceMappingURL=ecommpayoptions.d.ts.map