import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { CustomFieldSelectOption, CustomFieldSelectOption$Outbound } from "./customfieldselectoption.js"; export type CustomFieldSelectProperties = { formLabel?: string | undefined; formHelpText?: string | undefined; formPlaceholder?: string | undefined; options: Array; }; /** @internal */ export declare const CustomFieldSelectProperties$inboundSchema: z.ZodMiniType; /** @internal */ export type CustomFieldSelectProperties$Outbound = { form_label?: string | undefined; form_help_text?: string | undefined; form_placeholder?: string | undefined; options: Array; }; /** @internal */ export declare const CustomFieldSelectProperties$outboundSchema: z.ZodMiniType; export declare function customFieldSelectPropertiesToJSON(customFieldSelectProperties: CustomFieldSelectProperties): string; export declare function customFieldSelectPropertiesFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=customfieldselectproperties.d.ts.map