import * as z from "zod"; export type CustomFieldOptionsV1NumberListRequest = { /** * number of records to return */ pageSize?: number | undefined; /** * A custom field option's ID. This endpoint will return a list of custom field options created after this option. */ after?: string | undefined; /** * The custom field to list options for. */ customFieldId: string; }; /** @internal */ export declare const CustomFieldOptionsV1NumberListRequest$inboundSchema: z.ZodType; /** @internal */ export type CustomFieldOptionsV1NumberListRequest$Outbound = { page_size: number; after?: string | undefined; custom_field_id: string; }; /** @internal */ export declare const CustomFieldOptionsV1NumberListRequest$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 CustomFieldOptionsV1NumberListRequest$ { /** @deprecated use `CustomFieldOptionsV1NumberListRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `CustomFieldOptionsV1NumberListRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `CustomFieldOptionsV1NumberListRequest$Outbound` instead. */ type Outbound = CustomFieldOptionsV1NumberListRequest$Outbound; } //# sourceMappingURL=customfieldoptionsv1numberlist.d.ts.map