import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type CustomFieldTextProperties = { formLabel?: string | undefined; formHelpText?: string | undefined; formPlaceholder?: string | undefined; textarea?: boolean | undefined; minLength?: number | undefined; maxLength?: number | undefined; }; /** @internal */ export declare const CustomFieldTextProperties$inboundSchema: z.ZodMiniType; /** @internal */ export type CustomFieldTextProperties$Outbound = { form_label?: string | undefined; form_help_text?: string | undefined; form_placeholder?: string | undefined; textarea?: boolean | undefined; min_length?: number | undefined; max_length?: number | undefined; }; /** @internal */ export declare const CustomFieldTextProperties$outboundSchema: z.ZodMiniType; export declare function customFieldTextPropertiesToJSON(customFieldTextProperties: CustomFieldTextProperties): string; export declare function customFieldTextPropertiesFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=customfieldtextproperties.d.ts.map