import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type CustomFieldSelectOption = { value: string; label: string; }; /** @internal */ export declare const CustomFieldSelectOption$inboundSchema: z.ZodMiniType; /** @internal */ export type CustomFieldSelectOption$Outbound = { value: string; label: string; }; /** @internal */ export declare const CustomFieldSelectOption$outboundSchema: z.ZodMiniType; export declare function customFieldSelectOptionToJSON(customFieldSelectOption: CustomFieldSelectOption): string; export declare function customFieldSelectOptionFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=customfieldselectoption.d.ts.map