import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { ErrorValidationItem } from "./errorvalidationitem.js"; /** * A human-readable object describing validation decisions Codat has made. If an operation has failed because of validation errors, they will be detailed here. */ export type ErrorValidation = { errors?: Array | null | undefined; warnings?: Array | null | undefined; }; /** @internal */ export declare const ErrorValidation$inboundSchema: z.ZodType; export declare function errorValidationFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=errorvalidation.d.ts.map