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