import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type TextFieldConfig = { /** * Maximum character length constraint for the input. */ maxLength?: number | undefined; /** * Minimum character length requirement for the input. */ minLength?: number | undefined; }; /** @internal */ export declare const TextFieldConfig$inboundSchema: z.ZodType; /** @internal */ export type TextFieldConfig$Outbound = { max_length?: number | undefined; min_length?: number | undefined; }; /** @internal */ export declare const TextFieldConfig$outboundSchema: z.ZodType; export declare function textFieldConfigToJSON(textFieldConfig: TextFieldConfig): string; export declare function textFieldConfigFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=textfieldconfig.d.ts.map