import * as z from "zod/v4-mini"; import { RoundType } from "./round-type.js"; export type PriceTransformQuantity = { /** * Divide quantity by this number */ divideBy?: number | undefined; round?: RoundType | undefined; }; /** @internal */ export type PriceTransformQuantity$Outbound = { divide_by?: number | undefined; round?: string | undefined; }; /** @internal */ export declare const PriceTransformQuantity$outboundSchema: z.ZodMiniType; export declare function priceTransformQuantityToJSON(priceTransformQuantity: PriceTransformQuantity): string; //# sourceMappingURL=price-transform-quantity.d.ts.map