import * as z from "zod"; export type CustomFieldOptionV1 = { /** * ID of the custom field this option belongs to */ customFieldId: string; /** * Unique identifier for the custom field option */ id: string; /** * Sort key used to order the custom field options correctly */ sortKey?: number | undefined; /** * Human readable name for the custom field option */ value: string; }; /** @internal */ export declare const CustomFieldOptionV1$inboundSchema: z.ZodType; /** @internal */ export type CustomFieldOptionV1$Outbound = { custom_field_id: string; id: string; sort_key: number; value: string; }; /** @internal */ export declare const CustomFieldOptionV1$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 CustomFieldOptionV1$ { /** @deprecated use `CustomFieldOptionV1$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `CustomFieldOptionV1$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `CustomFieldOptionV1$Outbound` instead. */ type Outbound = CustomFieldOptionV1$Outbound; } //# sourceMappingURL=customfieldoptionv1.d.ts.map