import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { SimpleFormFieldOption, SimpleFormFieldOption$Outbound } from "./simpleformfieldoption.js"; export type FormFieldOptionGroup = { id?: string | undefined; label?: string | undefined; options?: Array | undefined; }; /** @internal */ export declare const FormFieldOptionGroup$inboundSchema: z.ZodType; /** @internal */ export type FormFieldOptionGroup$Outbound = { id?: string | undefined; label?: string | undefined; options?: Array | undefined; }; /** @internal */ export declare const FormFieldOptionGroup$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace FormFieldOptionGroup$ { /** @deprecated use `FormFieldOptionGroup$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `FormFieldOptionGroup$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `FormFieldOptionGroup$Outbound` instead. */ type Outbound = FormFieldOptionGroup$Outbound; } export declare function formFieldOptionGroupToJSON(formFieldOptionGroup: FormFieldOptionGroup): string; export declare function formFieldOptionGroupFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=formfieldoptiongroup.d.ts.map