import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type CustomFieldNumberProperties = { formLabel?: string | undefined; formHelpText?: string | undefined; formPlaceholder?: string | undefined; ge?: number | undefined; le?: number | undefined; }; /** @internal */ export declare const CustomFieldNumberProperties$inboundSchema: z.ZodMiniType; /** @internal */ export type CustomFieldNumberProperties$Outbound = { form_label?: string | undefined; form_help_text?: string | undefined; form_placeholder?: string | undefined; ge?: number | undefined; le?: number | undefined; }; /** @internal */ export declare const CustomFieldNumberProperties$outboundSchema: z.ZodMiniType; export declare function customFieldNumberPropertiesToJSON(customFieldNumberProperties: CustomFieldNumberProperties): string; export declare function customFieldNumberPropertiesFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=customfieldnumberproperties.d.ts.map