import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type Value5 = string | number | boolean | { [k: string]: any; }; export type Value4 = {}; /** * The actual value that failed validation */ export type PayloadValidationErrorDtoValue = string | number | boolean | Value4 | Array; export type PayloadValidationErrorDto = { /** * Field path that failed validation */ field: string; /** * Validation error message */ message: string; /** * The actual value that failed validation */ value?: string | number | boolean | Value4 | Array | null | undefined; /** * JSON Schema path where the validation failed */ schemaPath?: string | undefined; }; /** @internal */ export declare const Value5$inboundSchema: z.ZodType; export declare function value5FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Value4$inboundSchema: z.ZodType; export declare function value4FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PayloadValidationErrorDtoValue$inboundSchema: z.ZodType; export declare function payloadValidationErrorDtoValueFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PayloadValidationErrorDto$inboundSchema: z.ZodType; export declare function payloadValidationErrorDtoFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=payloadvalidationerrordto.d.ts.map