import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { ProductOption, ProductOption$Outbound } from "./productoption.js"; /** * Represents a group of product configuration options, such as size or color. */ export type ProductOptionGroup = { name: string; /** * A detailed description of the option group. * * @remarks * * - Must be valid UTF-8 text * - Supports Markdown for formatting * - HTML is not permitted and will be rejected */ description?: string | undefined; /** * The minimum number of options that must be selected from this group. * * @remarks * * A value of 0 indicates that no selection from this group is required. */ minSelect: number; /** * The maximum number of options that can be selected from this group. */ maxSelect: number; /** * The options available within this group. */ options: Array; }; /** @internal */ export declare const ProductOptionGroup$inboundSchema: z.ZodType; /** @internal */ export type ProductOptionGroup$Outbound = { name: string; description?: string | undefined; minSelect: number; maxSelect: number; options: Array; }; /** @internal */ export declare const ProductOptionGroup$outboundSchema: z.ZodType; export declare function productOptionGroupToJSON(productOptionGroup: ProductOptionGroup): string; export declare function productOptionGroupFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=productoptiongroup.d.ts.map