import * as z from "zod/v3"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; export type EmailValidationBatchValidateErrorItem = { /** * The id of the error returned */ error?: string | undefined; /** * A description of the error */ description?: string | undefined; /** * The cause of the error */ cause?: string | undefined; /** * Actions to resolve the error */ resolution?: string | undefined; }; /** @internal */ export declare const EmailValidationBatchValidateErrorItem$inboundSchema: z.ZodType; export declare function emailValidationBatchValidateErrorItemFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=emailvalidationbatchvalidateerror.d.ts.map