import * as z from "zod/v4-mini"; import { DiscountFixedCreate, DiscountFixedCreate$Outbound } from "./discountfixedcreate.js"; import { DiscountPercentageCreate, DiscountPercentageCreate$Outbound } from "./discountpercentagecreate.js"; export type DiscountCreate = DiscountFixedCreate | DiscountPercentageCreate; /** @internal */ export type DiscountCreate$Outbound = DiscountFixedCreate$Outbound | DiscountPercentageCreate$Outbound; /** @internal */ export declare const DiscountCreate$outboundSchema: z.ZodMiniType; export declare function discountCreateToJSON(discountCreate: DiscountCreate): string; //# sourceMappingURL=discountcreate.d.ts.map