import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { CreateProductOption, CreateProductOption$Outbound } from "./createproductoption.js"; export type CreateProductOptionGroup = { 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 CreateProductOptionGroup$inboundSchema: z.ZodType; /** @internal */ export type CreateProductOptionGroup$Outbound = { name: string; description?: string | undefined; minSelect: number; maxSelect: number; options: Array; }; /** @internal */ export declare const CreateProductOptionGroup$outboundSchema: z.ZodType; export declare function createProductOptionGroupToJSON(createProductOptionGroup: CreateProductOptionGroup): string; export declare function createProductOptionGroupFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=createproductoptiongroup.d.ts.map