import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { BatchErrorData, BatchErrorData$Outbound } from "./batcherrordata.js"; export type BatchErrors = { object: "list"; data: Array; }; /** @internal */ export declare const BatchErrors$inboundSchema: z.ZodType; /** @internal */ export type BatchErrors$Outbound = { object: "list"; data: Array; }; /** @internal */ export declare const BatchErrors$outboundSchema: z.ZodType; export declare function batchErrorsToJSON(batchErrors: BatchErrors): string; export declare function batchErrorsFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=batcherrors.d.ts.map