import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type ValidationItem = { /** * Unique identifier for a validation item. */ itemId?: string | null | undefined; /** * A message outlining validation item's issue. */ message?: string | null | undefined; /** * Name of validator. */ validatorName?: string | null | undefined; }; /** @internal */ export declare const ValidationItem$inboundSchema: z.ZodType; export declare function validationItemFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=validationitem.d.ts.map