import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { RoundType } from "./round-type.js"; import { SDKValidationError } from "./sdk-validation-error.js"; export type PriceJSONBTransformQuantity = { /** * Divide quantity by this number */ divideBy?: number | undefined; round?: RoundType | undefined; }; /** @internal */ export declare const PriceJSONBTransformQuantity$inboundSchema: z.ZodMiniType; export declare function priceJSONBTransformQuantityFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=price-jsonb-transform-quantity.d.ts.map