import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type Five = string | number | boolean | { [k: string]: any; }; export type Four = {}; /** * Value that failed validation */ export type Value = string | number | boolean | Four | Array; export type ConstraintValidation = { /** * List of validation error messages */ messages: Array; /** * Value that failed validation */ value?: string | number | boolean | Four | Array | null | undefined; }; /** @internal */ export declare const Five$inboundSchema: z.ZodType; export declare function fiveFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Four$inboundSchema: z.ZodType; export declare function fourFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Value$inboundSchema: z.ZodType; export declare function valueFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const ConstraintValidation$inboundSchema: z.ZodType; export declare function constraintValidationFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=constraintvalidation.d.ts.map